sqlite3: add CI version check

Signed-off-by: George Sapkin <george@sapk.in>
This commit is contained in:
George Sapkin 2025-04-24 16:40:38 +03:00 committed by Tianling Shen
parent 7be9ae1b7b
commit b2d2ba8ae9
1 changed files with 5 additions and 0 deletions

5
libs/sqlite3/test.sh Normal file
View File

@ -0,0 +1,5 @@
#!/bin/sh
if [ "$1" = 'sqlite3-cli' ]; then
sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION"
fi