From: George Sapkin Date: Thu, 8 May 2025 20:24:50 +0000 (+0300) Subject: sqlite3: fix CI test X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=d066a4d0463e90e26d0915caea8a00564dbc3285;p=feed%2Fpackages.git sqlite3: fix CI test Fixes: b2d2ba8ae ("sqlite3: add CI version check") Signed-off-by: George Sapkin --- diff --git a/libs/sqlite3/test.sh b/libs/sqlite3/test.sh old mode 100644 new mode 100755 index ca369c706e..05788fdb5b --- a/libs/sqlite3/test.sh +++ b/libs/sqlite3/test.sh @@ -1,5 +1,5 @@ #!/bin/sh if [ "$1" = 'sqlite3-cli' ]; then - sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION" + sqlite3 -version | grep -F "$PKG_VERSION" fi