Use = not ==
The bash shebang didn't seem to have an effect (??). Instead assume sh and use = not == in conditional.
This commit is contained in:
parent
2100270687
commit
4be2727422
|
@ -1,8 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
if [ "$RACKET_VERSION" == "HEAD" ]; then
|
||||
if [ "$RACKET_VERSION" = "HEAD" ]; then
|
||||
# Unfortunately there is no abstract URL for "HEAD" -- the nighly
|
||||
# builds have a version number like 5.90.0.9 embedded in the
|
||||
# URL. So this will need to be updated manually whenever the
|
||||
|
|
Loading…
Reference in New Issue
Block a user