From: George Sapkin Date: Thu, 24 Apr 2025 13:40:38 +0000 (+0300) Subject: sqlite3: add CI version check X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=b2d2ba8ae9e852f02753dfcf43773883e9b0d123;p=feed%2Fpackages.git sqlite3: add CI version check Signed-off-by: George Sapkin --- diff --git a/libs/sqlite3/test.sh b/libs/sqlite3/test.sh new file mode 100644 index 0000000000..ca369c706e --- /dev/null +++ b/libs/sqlite3/test.sh @@ -0,0 +1,5 @@ +#!/bin/sh + +if [ "$1" = 'sqlite3-cli' ]; then + sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION" +fi