We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building Quicksilver 1.2.0 fails with:
/tmp/QS/build/Quicksilver.build/Release/Quicksilver.build/Script-66CAE628153EF9AE0021BC65.sh: line 21: [: too many arguments
Line 21 uses the variable $CURRENT_BRANCH but does not anticipate that the variable might have more than one word, which it does on my system:
$CURRENT_BRANCH
* (detached from v1.2.0-final)
Quote the variable to avoid this problem.
The text was updated successfully, but these errors were encountered:
Wrap $CURRENT_BRANCH in double quotes.
4faa3e2
Fixes #1973
Successfully merging a pull request may close this issue.
Building Quicksilver 1.2.0 fails with:
Line 21 uses the variable
$CURRENT_BRANCH
but does not anticipate that the variable might have more than one word, which it does on my system:Quote the variable to avoid this problem.
The text was updated successfully, but these errors were encountered: