Browse Source

build: Fix "too many arguments" error

Closes #5141
pull/145/head
Francis GASCHET 10 years ago
committed by Wladimir J. van der Laan
parent
commit
70d80cc7bf
No known key found for this signature in database GPG Key ID: 74810B012346C9A6
  1. 2
      share/genbuild.sh

2
share/genbuild.sh

@ -16,7 +16,7 @@ fi
DESC=""
SUFFIX=""
LAST_COMMIT_DATE=""
if [ -e "$(which git 2>/dev/null)" -a $(git rev-parse --is-inside-work-tree 2>/dev/null) = "true" ]; then
if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
# clean 'dirty' status of touched files that haven't been modified
git diff >/dev/null 2>/dev/null

Loading…
Cancel
Save