Skip to content

Commit

Permalink
irgen_test: which sar &> invalid sh, always fails
Browse files Browse the repository at this point in the history
From:
https://eucalyptus.atlassian.net/browse/EUCA-5886
"The &> redirect is not a valid statement for sh so gitcheck always
fails."
  • Loading branch information
sangisos committed Jun 19, 2016
1 parent ddebf04 commit 6c698f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testdata/extra/irgen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ post_strip:
./post_strip.sh

sar:
@if ! which $@ &> /dev/null ; then \
@if ! which $@ > /dev/null 2>&1 ; then \
echo "Please install the \"sar\" tool"; \
echo; \
echo " go get github.com/mewkiz/cmd/sar"; \
Expand Down

0 comments on commit 6c698f2

Please sign in to comment.