sqlite3: add CI version check
authorGeorge Sapkin <[email protected]>
Thu, 24 Apr 2025 13:40:38 +0000 (16:40 +0300)
committerTianling Shen <[email protected]>
Mon, 28 Apr 2025 09:21:30 +0000 (17:21 +0800)
Signed-off-by: George Sapkin <[email protected]>
libs/sqlite3/test.sh [new file with mode: 0644]

diff --git a/libs/sqlite3/test.sh b/libs/sqlite3/test.sh
new file mode 100644 (file)
index 0000000..ca369c7
--- /dev/null
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+if [ "$1" = 'sqlite3-cli' ]; then
+       sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION"
+fi