Skip to content

Commit

Permalink
Merge pull request #1516 from alphagov/fix-setup_ckan.sh
Browse files Browse the repository at this point in the history
Remove extra square bracket as causes error
  • Loading branch information
kentsanggds authored Oct 12, 2023
2 parents 114ed45 + bb735f6 commit 571bf15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/setup_ckan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ while ! pg_isready -h $CKAN_DB_HOST -U ckan; do
sleep 1;
done

if [[ ${CKAN_DB_INIT:-} = "true" ]]; then
if [ ${CKAN_DB_INIT:-} = "true" ]; then
ckan db init
fi

Expand Down

0 comments on commit 571bf15

Please sign in to comment.