Skip to content

Commit

Permalink
These shell scripts need to use Bash, not /bin/sh.
Browse files Browse the repository at this point in the history
Fixes breaking on Ubuntu, where /bin/sh is this crappy "dash" thing.
  • Loading branch information
icculus committed Sep 22, 2009
1 parent f82845f commit 0ca70bb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/duke3d/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down
2 changes: 1 addition & 1 deletion examples/postal2/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down
2 changes: 1 addition & 1 deletion examples/prey-demo/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down
2 changes: 1 addition & 1 deletion examples/prey/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down
2 changes: 1 addition & 1 deletion examples/ut3-dedicated-patches/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down
2 changes: 1 addition & 1 deletion examples/ut3-dedicated/make.sh
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash

# This script is not robust for all platforms or situations. Use as a rough
# example, but invest effort in what it's trying to do, and what it produces.
Expand Down

0 comments on commit 0ca70bb

Please sign in to comment.