summary refs log tree commit diff
path: root/prune.sh
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2016-04-06 20:53:14 -0400
committerJune McEnroe <june@causal.agency>2016-04-06 20:53:14 -0400
commit0be154c654ef425a33b6f129b8747fabdfa17e2e (patch)
tree1b27d464448ed2a0d8577f6554aea7ed88a40b92 /prune.sh
parentAdd gpg-agent to README (diff)
downloadsrc-0be154c654ef425a33b6f129b8747fabdfa17e2e.tar.gz
src-0be154c654ef425a33b6f129b8747fabdfa17e2e.zip
Simplify install script
Diffstat (limited to 'prune.sh')
-rwxr-xr-xprune.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/prune.sh b/prune.sh
index 2480b7ba..af2379e5 100755
--- a/prune.sh
+++ b/prune.sh
@@ -2,7 +2,7 @@
 
 # Remove symbolic links in ~ to files that no longer exist.
 
-set -e
+set -o errexit -o nounset -o pipefail
 
 paths=$(find -L ~ -type l -lname "$PWD/*")