We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 601b814 commit 90f3056Copy full SHA for 90f3056
tests/test-ext.sh
@@ -6,12 +6,12 @@ EXTENSION_FILE=${EXTENSION_FILE:-target/debug/examples/libsqlite_compressions}
6
7
if [ ! -f "$EXTENSION_FILE" ] && [ ! -f "$EXTENSION_FILE.so" ] && [ ! -f "$EXTENSION_FILE.dylib" ] && [ ! -f "$EXTENSION_FILE.dll" ]; then
8
echo "Extension file $EXTENSION_FILE [.so|.dylib|.dll] do not exist. Run 'just build-ext' first. Available files:"
9
- ls -l $EXTENSION_FILE*
+ ls -l "$EXTENSION_FILE"*
10
exit 1
11
fi
12
echo "Using extension file '$EXTENSION_FILE [.so|.dylib|.dll]'"
13
14
-if [ ! command -v $SQLITE3_BIN &> /dev/null ]; then
+if ! command -v "$SQLITE3_BIN" > /dev/null; then
15
echo "$SQLITE3_BIN executable could not be found"
16
17
0 commit comments