diff options
author | Evax Software <[email protected]> | 2011-04-07 18:07:46 +0200 |
---|---|---|
committer | Evax Software <[email protected]> | 2011-04-07 18:07:46 +0200 |
commit | 8406cee3c1d21cd31beb4a516e5fc2c813b3705b (patch) | |
tree | 5ed9d6c5627e8779c0e9e215881f0fbe1bf3662d /kerl | |
parent | c7b67dc4baa7cfefd96818fd15a75fb455c3ed4f (diff) | |
download | kerl-8406cee3c1d21cd31beb4a516e5fc2c813b3705b.tar.gz kerl-8406cee3c1d21cd31beb4a516e5fc2c813b3705b.tar.bz2 kerl-8406cee3c1d21cd31beb4a516e5fc2c813b3705b.zip |
Fix bug allowing duplicate build names
Diffstat (limited to 'kerl')
-rwxr-xr-x | kerl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -194,7 +194,7 @@ do_build() assert_valid_release $1 if [ -f "$KERL_BASE_DIR/otp_builds" ]; then for l in `cat "$KERL_BASE_DIR/otp_builds"`; do - name=`echo $l | cut -d " " -f 1` + name=`echo $l | cut -d "," -f 2` if [ "$name" = "$2" ]; then echo "There's already a build named $2" exit 1 |