Browse Source

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>
Ian Jackson 8 years ago
parent
commit
95a292824f
4 changed files with 4 additions and 4 deletions
  1. 1 1
      build
  2. 1 1
      examples/blink.sh
  3. 1 1
      examples/q2w/blink.sh
  4. 1 1
      gpio/newVersion

+ 1 - 1
build

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

+ 1 - 1
examples/blink.sh

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

+ 1 - 1
examples/q2w/blink.sh

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

+ 1 - 1
gpio/newVersion

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