Make Makefile posix-compliant

This commit is contained in:
Alexis Sellier 2017-08-08 21:09:39 +02:00
parent 2b1c4dd8b9
commit a9df9aeef4
1 changed files with 1 additions and 1 deletions

View File

@ -72,6 +72,6 @@ clean:
# when your repo is getting a little stale... just make fresh
fresh: clean get_vendor_deps install
@if [[ `git status -s` ]]; then echo; echo "Warning: uncommited changes"; git status -s; fi
@if [ "$(git status -s)" ]; then echo; echo "Warning: uncommited changes"; git status -s; fi
.PHONY: all build install test test_cli test_unit get_vendor_deps build-docker clean fresh benchmark