mirror of
https://github.com/openwrt/packages.git
synced 2025-07-05 21:43:08 +00:00
6 lines
112 B
Bash
6 lines
112 B
Bash
#!/bin/sh
|
|
|
|
if [ "$1" = 'sqlite3-cli' ]; then
|
|
sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION"
|
|
fi
|