summaryrefslogtreecommitdiff
path: root/setup_native/tests/opensolaris/bundledextensions
diff options
context:
space:
mode:
authorPedro Giffuni <pfg@apache.org>2012-01-24 14:30:34 +0000
committerPedro Giffuni <pfg@apache.org>2012-01-24 14:30:34 +0000
commita345457686b7617dcdee9d28b2a579801e90034a (patch)
treeab2f742ce9cb74240a14f2c650ac0693491a1984 /setup_native/tests/opensolaris/bundledextensions
parentf2a7b1334f97ab8bface5ede756bce51cf2426da (diff)
Avoid some uses of non portable #!/bin/bash in shell scripts.
bash is common in GNU/linux but is, in general, not available by default on other systems or likely to be in a different place. When possible /bin/sh should be used but if bash extensions are required "#!/bin/env bash" is considered more portable.
Diffstat (limited to 'setup_native/tests/opensolaris/bundledextensions')
-rw-r--r--setup_native/tests/opensolaris/bundledextensions/send_ooo2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup_native/tests/opensolaris/bundledextensions/send_ooo b/setup_native/tests/opensolaris/bundledextensions/send_ooo
index 669e63ceda1b..9b260ec798b2 100644
--- a/setup_native/tests/opensolaris/bundledextensions/send_ooo
+++ b/setup_native/tests/opensolaris/bundledextensions/send_ooo
@@ -1,4 +1,4 @@
-#! /bin/bash
+#!/bin/sh
if [ $# = 0 ]