Remove old sh-ism (#920)

The x prefix thing hasn't been needed for quite some time, especially if you are declaring that you want to use bash.
This commit is contained in:
fREW Schmidt 2020-05-14 03:53:38 -07:00 committed by GitHub
parent 57b14591f9
commit ec6549748b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
if [ x"$@" = x"quit" ]
if [ "$*" = "quit" ]
then
exit 0
fi