projects
/
feed
/
packages.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7be9ae1
)
sqlite3: add CI version check
author
George Sapkin
<
[email protected]
>
Thu, 24 Apr 2025 13:40:38 +0000
(16:40 +0300)
committer
Tianling Shen
<
[email protected]
>
Mon, 28 Apr 2025 09:21:30 +0000
(17:21 +0800)
Signed-off-by: George Sapkin <
[email protected]
>
libs/sqlite3/test.sh
[new file with mode: 0644]
patch
|
blob
diff --git a/libs/sqlite3/test.sh
b/libs/sqlite3/test.sh
new file mode 100644
(file)
index 0000000..
ca369c7
--- /dev/null
+++ b/
libs/sqlite3/test.sh
@@ -0,0
+1,5
@@
+#!/bin/sh
+
+if [ "$1" = 'sqlite3-cli' ]; then
+ sqlite3 -version 2>&1 | cut -d' ' -f1 | grep -x "$PKG_VERSION"
+fi