diff options
author | Francis Rowe <info@gluglug.org.uk> | 2014-12-13 00:40:50 +0000 |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2014-12-13 00:40:50 +0000 |
commit | 78e345b68fea725b6375882007178239ecb038f9 (patch) | |
tree | cdad96290e994a4f200ab71d48449581fef799ce /lenovobios_firstflash | |
parent | f291a9c0fabc15815d7e40e9a8fbcad918e28206 (diff) | |
download | librebootfr-78e345b68fea725b6375882007178239ecb038f9.tar.gz librebootfr-78e345b68fea725b6375882007178239ecb038f9.zip |
lenovobios_firstflash: Fix errors
lenovobios_secondflash: Fix errors
Diffstat (limited to 'lenovobios_firstflash')
-rwxr-xr-x | lenovobios_firstflash | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/lenovobios_firstflash b/lenovobios_firstflash index ca584401..e5c91788 100755 --- a/lenovobios_firstflash +++ b/lenovobios_firstflash @@ -80,30 +80,28 @@ if [ ! -f "DEBLOB" ] then # i686 # needed for first flashing, otherwise machine will be bricked - { # try - ./bucts/i686/bucts 1 - } || { # catch + if [ ! -f "bucts/i686/bucts" ]; then echo "$errOut" exit 1 - } + fi + ./bucts/i686/bucts 1 else # x86_64 # needed for first flashing, otherwise machine will be bricked - { # try - ./bucts/x86_64/bucts 1 - } || { # catch + if [ ! -f "bucts/x86_64/bucts" ]; then echo "$errOut" exit 1 - } + fi + ./bucts/x86_64/bucts 1 + fi else # this means we are working in src # needed for first flashing, otherwise machine will be bricked - { # try - ./bucts/bucts 1 - } || { # catch + if [ ! -f "bucts/bucts" ]; then echo "$errOut" exit 1 - } + fi + ./bucts/bucts 1 fi # run both. one will fail (and be harmless), the other will succeed. |