diff options
Diffstat (limited to 'macbook21_firstflash')
-rwxr-xr-x | macbook21_firstflash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macbook21_firstflash b/macbook21_firstflash index dbbe534..c414f26 100755 --- a/macbook21_firstflash +++ b/macbook21_firstflash @@ -29,11 +29,11 @@ if (( $# != 1 )); then echo "Usage: ./lenovobios_firstflash yourrom.rom" echo "usage: ./lenovobios_firstflash path/to/yourrom.rom" echo "You need to specify exactly 1 file" - exit + exit 1 fi if [ ! -f $1 ]; then echo "File not found!" - exit + exit 1 fi # flashrom doesn't recognize the machine unless you use that switch: laptop=force_I_want_a_brick |