Skip to content

Commit

Permalink
Bash script fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
madharjan committed Mar 1, 2017
1 parent 8dd8522 commit fa52730
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/cleanup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e
export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive

if [ "${DEBUG}" == true ]; then
if [ "${DEBUG}" = true ]; then
set -x
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e
export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive

if [ "${DEBUG}" == true ]; then
if [ "${DEBUG}" = true ]; then
set -x
fi

Expand Down
2 changes: 1 addition & 1 deletion services/postgresql-startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

if [ "${DEBUG}" == true ]; then
if [ "${DEBUG}" = true ]; then
set -x
fi

Expand Down
2 changes: 1 addition & 1 deletion services/postgresql/postgresql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e
export LC_ALL=C
export DEBIAN_FRONTEND=noninteractive

if [ "${DEBUG}" == true ]; then
if [ "${DEBUG}" = true ]; then
set -x
fi

Expand Down

0 comments on commit fa52730

Please sign in to comment.