summaryrefslogtreecommitdiff
path: root/infra/packaging/chklist/TF2TFLITE_EXIST
diff options
context:
space:
mode:
Diffstat (limited to 'infra/packaging/chklist/TF2TFLITE_EXIST')
-rw-r--r--infra/packaging/chklist/TF2TFLITE_EXIST13
1 files changed, 13 insertions, 0 deletions
diff --git a/infra/packaging/chklist/TF2TFLITE_EXIST b/infra/packaging/chklist/TF2TFLITE_EXIST
new file mode 100644
index 000000000..1a1c65cbc
--- /dev/null
+++ b/infra/packaging/chklist/TF2TFLITE_EXIST
@@ -0,0 +1,13 @@
+#!/bin/bash
+
+function prepare()
+{
+ export QUESTION="Is there tf2tflite?"
+}
+
+function run()
+{
+ if [[ -f "${NNAS_INSTALL_PREFIX}/bin/tf2tflite" ]]; then
+ export PASSED=1
+ fi
+}