diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-02 21:35:41 -0600 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2013-06-02 21:35:41 -0600 |
commit | 80c990cf48f2c17cb30a77f39ebce18273ed64b0 (patch) | |
tree | cf3619995c3f849ba5b6fec98730694512ad87bc | |
parent | 3631d01d01391ced593ecb7232f1a102ea28d63e (diff) |
fix return/exit mixup in pbs.in
-rwxr-xr-x | pbs.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,6 +8,6 @@ export PATH="$PBS_PATH:$PATH" if [[ $# < 1 ]]; then pbs-help - return 1 + exit 1 fi pbs-"$@" |