dying considered scary
This commit is contained in:
parent
a4cd11abcb
commit
6d3b129193
@ -1,10 +1,9 @@
|
||||
#!/bin/sh -x
|
||||
|
||||
die() { return 1 || exit 1; }
|
||||
set -e
|
||||
|
||||
if ! which curl >/dev/null 2>&1; then
|
||||
printf "1n574ll curl, 5700p1d!\n"
|
||||
die
|
||||
exit 1
|
||||
fi
|
||||
|
||||
ZELDA="http://www.trinity.moe/zelda.wav"
|
||||
@ -13,7 +12,7 @@ if which aplay >/dev/null 2>&1; then curl "$ZELDA" | aplay
|
||||
elif ls /dev/dsp >/dev/null 2>&1; then curl "$ZELDA" >/dev/dsp
|
||||
else
|
||||
printf "Unknown sound device. Sorry!\n"
|
||||
die
|
||||
exit 1
|
||||
fi
|
||||
|
||||
return 0 || exit 0
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user