1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-03 12:00:59 +00:00

add set -e to shell scripts

This commit is contained in:
Pavol Rusnak 2016-07-03 13:53:20 +02:00
parent fdbae0b0e0
commit 3ce756b692
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
4 changed files with 10 additions and 4 deletions

View File

@ -1,4 +1,6 @@
#!/bin/bash
set -e
IMAGETAG=trezor-mcu-build
FIRMWARETAG=${1:-master}

View File

@ -1,4 +1,6 @@
#!/bin/bash
set -e
IMAGETAG=trezor-mcu-build
FIRMWARETAG=${1:-master}

View File

@ -1,4 +1,5 @@
#!/bin/bash
set -e
if [ -z "$1" ]; then
echo "Please provide filename as argument"

1
firmware/u2f/genkeys.sh Normal file → Executable file
View File

@ -1,4 +1,5 @@
#!/bin/bash
set -e
cat > u2f_keys.h <<EOF
#ifndef __U2F_KEYS_H_INCLUDED__