Skip to content

Commit 2c914dc

Browse files
server: fix issue found by shellcheck
Signed-off-by: John Mulligan <[email protected]>
1 parent b7969ad commit 2c914dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

images/server/install-sambacc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ container_json_file="$2"
88
wheeldir=/tmp
99
wheel="$(find "${wheeldir}" -type f -name 'sambacc-*.whl')" \
1010

11-
if ! [ $(echo "$wheel" | wc -l) = 1 ]; then
11+
if ! [ "$(echo "$wheel" | wc -l)" = 1 ]; then
1212
echo "more than one wheel file found"
1313
exit 1
1414
fi

0 commit comments

Comments
 (0)