Skip to content

Commit

Permalink
Merge pull request #11 from slhck/fail-on-error
Browse files Browse the repository at this point in the history
fail on error in scripts
  • Loading branch information
adyanth authored Sep 16, 2021
2 parents 9e7bd6f + b85b349 commit fa944ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions usr/bin/tailscale
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

if [ ! -f /tmp/tailscale ]; then
arch=`uname -m`
if [ "$arch" == "mips" ]; then
Expand Down
2 changes: 2 additions & 0 deletions usr/bin/tailscaled
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -e

if [ ! -f /tmp/tailscaled ]; then
arch=`uname -m`
if [ "$arch" == "mips" ]; then
Expand Down

0 comments on commit fa944ec

Please sign in to comment.