From b2d2ba8ae9e852f02753dfcf43773883e9b0d123 Mon Sep 17 00:00:00 2001 From: George Sapkin Date: Thu, 24 Apr 2025 16:40:38 +0300 Subject: [PATCH] sqlite3: add CI version check Signed-off-by: George Sapkin --- libs/sqlite3/test.sh | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 libs/sqlite3/test.sh diff --git a/libs/sqlite3/test.sh b/libs/sqlite3/test.sh new file mode 100644 index 000000000..ca369c706 --- /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