diff options
author | grimreaper <eitan@eitanadler.com> | 2012-10-06 10:00:40 -0300 |
---|---|---|
committer | grimreaper <eitan@eitanadler.com> | 2012-10-06 10:00:40 -0300 |
commit | d51d784f85575e58296f127edef1cbabdf5aabaa (patch) | |
tree | 2074aaa955d3620b594009586ddd103c3fc6a5fe /devscripts | |
parent | aa85963987b610864979cfbcacfa7636a3972309 (diff) |
There is nothing bash specific here
/bin/bash is always wrong. Since there is nothing bash specific here, switch to /bin/sh
Diffstat (limited to 'devscripts')
-rwxr-xr-x | devscripts/release.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devscripts/release.sh b/devscripts/release.sh index 75f8ec8eb..963a6c22b 100755 --- a/devscripts/release.sh +++ b/devscripts/release.sh @@ -1,4 +1,4 @@ -#! /bin/bash +#!/bin/sh if [ -z "$1" ]; then echo "ERROR: specify version number like this: $0 1994.09.06"; exit 1; fi version="$1" |