Skip to content

Commit

Permalink
Merge pull request #59 from derschatta/fix-tdocker
Browse files Browse the repository at this point in the history
Fix tdocker bash script condition
  • Loading branch information
derschatta authored Jul 18, 2019
2 parents 661540c + 8867042 commit be72db5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/tdocker
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ files=(
"compose/selenium.yml"
)

if [[ "$1" -eq "build" ]]; then
if [ "$1" == "build" ]; then
files+=(
"compose/build.yml"
)
elif [[ -f "$PROJECTPATH/.use-mutagen" ]]; then
elif [ -f "$PROJECTPATH/.use-mutagen" ]; then
files+=(
"compose/sync.yml"
)
Expand Down

0 comments on commit be72db5

Please sign in to comment.