Skip to content

Commit be72db5

Browse files
author
Derschatta
authored
Merge pull request #59 from derschatta/fix-tdocker
Fix tdocker bash script condition
2 parents 661540c + 8867042 commit be72db5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

bin/tdocker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ files=(
1616
"compose/selenium.yml"
1717
)
1818

19-
if [[ "$1" -eq "build" ]]; then
19+
if [ "$1" == "build" ]; then
2020
files+=(
2121
"compose/build.yml"
2222
)
23-
elif [[ -f "$PROJECTPATH/.use-mutagen" ]]; then
23+
elif [ -f "$PROJECTPATH/.use-mutagen" ]; then
2424
files+=(
2525
"compose/sync.yml"
2626
)

0 commit comments

Comments
 (0)