Skip to content

Commit 0081be1

Browse files
committed
refactor: Use preferred command substitution syntax
1 parent af75b27 commit 0081be1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.utility/deploy-travis-wrapper.sh

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

55
# output every 9 min to prevent a Travis timeout
66
PID=$!
7-
while [[ `ps -p $PID | tail -n +2` ]]; do
7+
while [[ $(ps -p $PID | tail -n +2) ]]; do
88
echo 'Deploying...'
99
sleep 540
1010
done

0 commit comments

Comments
 (0)