mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
Fixes: b2d2ba8ae ("sqlite3: add CI version check")
Signed-off-by: George Sapkin <george@sapk.in>
6 lines
91 B
Bash
Executable File
6 lines
91 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ "$1" = 'sqlite3-cli' ]; then
|
|
sqlite3 -version | grep -F "$PKG_VERSION"
|
|
fi
|