Skip to content

Commit

Permalink
remove unnecessary depenedencies on bash
Browse files Browse the repository at this point in the history
  • Loading branch information
yamt committed Aug 28, 2012
1 parent 7d334e4 commit c6893bd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion conf/gen.settings.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

cat << EOF
# --
Expand Down
4 changes: 2 additions & 2 deletions conf/gen.settings.sys-Darwin
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# This file is used by "make install" on Darwin (i.e. Mac OS X).

. gen.settings.sh
. ./gen.settings.sh
4 changes: 2 additions & 2 deletions conf/gen.settings.sys-Debian
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# This file is used by Debian packaging.

cat << EOF
Expand All @@ -7,4 +7,4 @@ DISCO_USER = "disco"
EOF

. gen.settings.sh
. ./gen.settings.sh
4 changes: 2 additions & 2 deletions conf/gen.settings.sys-Linux
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh
# This file is used by "make install" on Linux.

. gen.settings.sh
. ./gen.settings.sh
2 changes: 1 addition & 1 deletion tests/run_tests_python25
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

export DISCO_TEST_PURGE=
export DISCO_MASTER_HOST=localhost
Expand Down

0 comments on commit c6893bd

Please sign in to comment.