Skip to content
This repository has been archived by the owner on Sep 3, 2022. It is now read-only.

Commit

Permalink
Use -e in all shell scripts to fail on error (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored and yebrahim committed Dec 8, 2016
1 parent f3328d6 commit 7e9c351
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion install-no-virtualenv.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

# Copyright 2016 Google Inc. All rights reserved.
#
Expand Down
2 changes: 1 addition & 1 deletion install-virtualenv.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

# Copyright 2016 Google Inc. All rights reserved.
#
Expand Down
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

# Copyright 2016 Google Inc. All rights reserved.
#
Expand Down

0 comments on commit 7e9c351

Please sign in to comment.