remove `set -e` on explorers (they should be able to fail gracefully)

This commit is contained in:
tom 2018-10-04 15:15:57 +02:00
parent a46da35bbc
commit 085b2a2b10
5 changed files with 5 additions and 5 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh -e #!/bin/sh
cd /dev cd /dev
echo sd? hd? vd? echo sd? hd? vd?

View File

@ -1,2 +1,2 @@
#!/bin/sh -e #!/bin/sh
sysctl -n security.jail.jailed 2>/dev/null | grep "1" || true sysctl -n security.jail.jailed 2>/dev/null | grep "1" || true

View File

@ -1,2 +1,2 @@
#!/bin/sh -e #!/bin/sh
uname -s uname -s

View File

@ -1,2 +1,2 @@
#!/bin/sh -e #!/bin/sh
command -v svc || true command -v svc || true

View File

@ -1,4 +1,4 @@
#!/bin/sh -e #!/bin/sh
[ -f /etc/environment ] && . /etc/environment [ -f /etc/environment ] && . /etc/environment
[ -f /etc/profile ] && . /etc/profile [ -f /etc/profile ] && . /etc/profile
go version 2>/dev/null || true go version 2>/dev/null || true