Use '#!/bin/sh' as executable interpreter. This is bad, because we do actually want bash, but if

we use '#!/bin/bash' then we end up sourcing enough .rc files to override any changes we have made
to PATH etc.
This commit is contained in:
Laurence Withers 2007-03-29 09:36:35 +00:00
parent 15ee88eda6
commit 4029a771e3
5 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# lw-build-system/scripts/module-create.sh # lw-build-system/scripts/module-create.sh
# #
# (c)2006, Laurence Withers, <l@lwithers.me.uk>. # (c)2006, Laurence Withers, <l@lwithers.me.uk>.

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# lw-build-system/scripts/release.sh # lw-build-system/scripts/release.sh
# #
# (c)2006, Laurence Withers, <l@lwithers.me.uk>. # (c)2006, Laurence Withers, <l@lwithers.me.uk>.

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# @P@/make.sh # @P@/make.sh
# #
# (c)2006-2007, @AUTHOR@, <@EMAIL@>. # (c)2006-2007, @AUTHOR@, <@EMAIL@>.

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# @P@/test.sh # @P@/test.sh
# #
# (c)2006, @AUTHOR@, <@EMAIL@>. # (c)2006, @AUTHOR@, <@EMAIL@>.

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/sh
# @P@/scripts/functions.sh # @P@/scripts/functions.sh
# #
# (c)2006, @AUTHOR@, <@EMAIL@>. # (c)2006, @AUTHOR@, <@EMAIL@>.