Skip to content

Commit e720fff

Browse files
committed
Fix bash scripts
1 parent 9948ee3 commit e720fff

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tools/composer

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ mkdir -p "$HOME/.composer/cache/"
44

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

7-
docker run --rm --interactive ${USE_TTY} \
7+
docker run --rm --interactive "${USE_TTY}" \
88
--user $UID:$UID \
99
--volume "$PWD":/app \
1010
--volume "$HOME/.composer":/tmp/.composer \

tools/php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
docker run --rm --init --interactive ${USE_TTY} \
5+
docker run --rm --init --interactive "${USE_TTY}" \
66
--user $UID:$UID \
77
--volume "$PWD:/app" \
88
timeweb/phpstan-enum php "$@"

tools/phpdbg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

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

0 commit comments

Comments
 (0)