Skip to content

Commit

Permalink
Remove extra square bracket as causes error
Browse files Browse the repository at this point in the history
  • Loading branch information
kentsanggds committed Oct 10, 2023
1 parent 114ed45 commit bb735f6
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 bb735f6

Please sign in to comment.