Skip to content

Commit

Permalink
Fix bash scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jdecool committed Nov 11, 2024
1 parent 9948ee3 commit e720fff
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/composer
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mkdir -p "$HOME/.composer/cache/"

test -t 1 && USE_TTY="--tty"

docker run --rm --interactive ${USE_TTY} \
docker run --rm --interactive "${USE_TTY}" \
--user $UID:$UID \
--volume "$PWD":/app \
--volume "$HOME/.composer":/tmp/.composer \
Expand Down
2 changes: 1 addition & 1 deletion tools/php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

test -t 1 && USE_TTY="--tty"

docker run --rm --init --interactive ${USE_TTY} \
docker run --rm --init --interactive "${USE_TTY}" \
--user $UID:$UID \
--volume "$PWD:/app" \
timeweb/phpstan-enum php "$@"
2 changes: 1 addition & 1 deletion tools/phpdbg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

test -t 1 && USE_TTY="--tty"

docker run --rm --init --interactive ${USE_TTY} \
docker run --rm --init --interactive "${USE_TTY}" \
--user $UID:$UID \
--volume "$PWD:/app" \
timeweb/phpstan-enum phpdbg "$@"

0 comments on commit e720fff

Please sign in to comment.