Skip to content

Commit 592d3ac

Browse files
committed
Fix bash errors
1 parent 7ecd72c commit 592d3ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ LATEST_SDK_VERSION=1.16
1010
# firefox profile that has HTTPS Everywhere installed
1111
PROFILE_DIRECTORY=/tmp/test_profile
1212

13-
if [ ! -d "$TEST_ADDON_PATH"]; then
13+
if [ ! -d "$TEST_ADDON_PATH" ]; then
1414
echo "Test addon path does not exist"
1515
exit 1
1616
fi
1717

18-
if [ ! -d "$PROFILE_DIRECTORY"]; then
18+
if [ ! -d "$PROFILE_DIRECTORY" ]; then
1919
echo "Firefox profile directory does not exist"
2020
exit 1
2121
fi

0 commit comments

Comments
 (0)