Build system: Add missing set -e

So that shell scripts do not blunder on after errors.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
This commit is contained in:
Ian Jackson 2015-09-09 23:30:16 +00:00
parent 5edd177112
commit 95a292824f
4 changed files with 4 additions and 4 deletions

2
build
View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e
# build
# Simple wiringPi build and install script

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e
#
# blink.sh:
# Standard "blink" program in wiringPi. Blinks an LED connected

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e
#
# blink.sh:
# Standard "blink" program in wiringPi. Blinks an LED connected

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e
#
# newVersion:
# Utility to create the version.h include file for the gpio command.