diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-01 13:12:24 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-01 13:12:24 (EST) |
commit | c2a9c18e7cbfd9aacb917f526bcd04920ae1e6d5 (patch) | |
tree | 84161d33ade811cb3a7ffb851069dedb18038ec0 | |
parent | dfd0abfe8cf0bab3666e7f084179787ee6addda1 (diff) | |
download | libreboot-c2a9c18e7cbfd9aacb917f526bcd04920ae1e6d5.zip libreboot-c2a9c18e7cbfd9aacb917f526bcd04920ae1e6d5.tar.gz libreboot-c2a9c18e7cbfd9aacb917f526bcd04920ae1e6d5.tar.bz2 |
lenovobios_firstflash: fix BASH errors
-rwxr-xr-x | lenovobios_firstflash | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lenovobios_firstflash b/lenovobios_firstflash index 9120001..2d8ccec 100755 --- a/lenovobios_firstflash +++ b/lenovobios_firstflash @@ -57,14 +57,10 @@ else exit 1 fi -# Set mucts -$errOut = " \ - BUCTS failed. Make sure BUC.TS is 1, or else you will brick your machine. \ - ABORTING so as to protect against bricking the machine. \ - " +# Set bucts # this means we are working in src if [ ! -f "$bucts" ]; then - echo "$errOut" + echo "BUCTS failed. Make sure BUC.TS is 1, or else you will brick your machine. ABORTING so as to protect against bricking the machine." exit 1 fi |