Use 'sh' instead of 'sh -e'

'sh -e' makes the shell script die if any command returns an error which isn't
caught. While this is a nice feature, this script doesn't actually need this.
Not using this shell feature makes the script more portable.

Thanks to Edward O'Callaghan aka eocallagha for stumbling upon this.

Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
Uli Schlachter 2009-05-09 20:07:54 +02:00 committed by Julien Danjou
parent 90d6c799ff
commit 886d62fb59
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh -e #!/bin/sh
# #
# Copyright © 2008 Pierre Habouzit <madcoder@debian.org> # Copyright © 2008 Pierre Habouzit <madcoder@debian.org>
# #