Skip to content

Commit

Permalink
Fix test syntax.
Browse files Browse the repository at this point in the history
Oops. Broken with commit 7cb3657.
  • Loading branch information
mlschroe committed Oct 17, 2016
1 parent d65f0f9 commit 0a3e0c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ cleanup_and_exit () {
trap EXIT
test -z "$1" && set 0
if test -n "$2" ; then
if "$1" -ne 0 ; then
if test "$1" -ne 0 ; then
echo "$2" >&2
else
echo "$2"
Expand Down
2 changes: 1 addition & 1 deletion init_buildsystem
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ cleanup_and_exit() {
trap EXIT
test -z "$1" && set 0
if test -n "$2" ; then
if "$1" -ne 0 ; then
if test "$1" -ne 0 ; then
echo "$2" >&2
else
echo "$2"
Expand Down

0 comments on commit 0a3e0c3

Please sign in to comment.