diff options
author | Omair Majid <[email protected]> | 2011-09-22 15:27:14 -0400 |
---|---|---|
committer | Omair Majid <[email protected]> | 2011-09-22 15:27:14 -0400 |
commit | 4de95173440e5add90e041a3cc3273937ad4cb0a (patch) | |
tree | b2280be74af55f6c052a622d16b20009854ab9be /jrunscript.in | |
parent | ebffba951342363acfa5a0a60b91ff16969ced01 (diff) |
PR789: typo in jrunscript.sh
2011-09-22 Lars Herschke <[email protected]>
PR789: typo in jrunscript.sh
* jrunscript.in: Use = instead of ==.
Diffstat (limited to 'jrunscript.in')
-rw-r--r-- | jrunscript.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jrunscript.in b/jrunscript.in index 53e620a..3d50826 100644 --- a/jrunscript.in +++ b/jrunscript.in @@ -1,6 +1,6 @@ #!/bin/bash -if [ x"@RHINO_JAR@" == x ] ; then +if [ x"@RHINO_JAR@" = x ] ; then echo "jrunscript requires rhino support" exit 1 fi |