0
0
mirror of https://github.com/openwrt/packages.git synced 2025-07-05 21:43:08 +00:00
Files
packages/libs/sqlite3/test.sh
George Sapkin b2d2ba8ae9 sqlite3: add CI version check
Signed-off-by: George Sapkin <george@sapk.in>
2025-04-28 17:21:30 +08:00

6 lines
112 B
Bash

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