Skip to content

Commit

Permalink
Substitute '/bin/bash' with '/usr/bin/env bash' so the scripts work also
Browse files Browse the repository at this point in the history
with systems not having bash in /bin.
  • Loading branch information
rissalmi committed Jul 30, 2016
1 parent ea83a8c commit 9449453
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compile-translations.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

NEW=$1

Expand Down
2 changes: 1 addition & 1 deletion install-virtualenv.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# install-virtualenv.sh
#
Expand Down
2 changes: 1 addition & 1 deletion run-sikteeri.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

fail () {
echo $@
Expand Down
2 changes: 1 addition & 1 deletion test.sh
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

export DJANGO_SETTINGS_MODULE=sikteeri.settings
export SIKTEERI_CONFIGURATION=dev
Expand Down

0 comments on commit 9449453

Please sign in to comment.