diff options
| author | harry <[email protected]> | 2014-05-09 12:06:20 +0800 |
|---|---|---|
| committer | harry <[email protected]> | 2014-05-09 12:06:20 +0800 |
| commit | b1f0be0a05aca81e564139472206dee72410976e (patch) | |
| tree | 993b703d6acb9999e0423c3d6e0e9a4e82539683 | |
| parent | qt: fix compile issue in Qt GUI (diff) | |
| download | discoin-b1f0be0a05aca81e564139472206dee72410976e.tar.xz discoin-b1f0be0a05aca81e564139472206dee72410976e.zip | |
build: fix: remove error output
while git not found in path, error is output to console.
| -rwxr-xr-x | share/genbuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/genbuild.sh b/share/genbuild.sh index 6890a6eba..0800b3122 100755 --- a/share/genbuild.sh +++ b/share/genbuild.sh @@ -16,7 +16,7 @@ fi DESC="" SUFFIX="" LAST_COMMIT_DATE="" -if [ -e "$(which git)" -a -d ".git" ]; then +if [ -e "$(which git 2>/dev/null)" -a -d ".git" ]; then # clean 'dirty' status of touched files that haven't been modified git diff >/dev/null 2>/dev/null |