Skip to content

Commit

Permalink
🐛 FIX: bugfix for #14
Browse files Browse the repository at this point in the history
  • Loading branch information
apolopena committed Feb 2, 2021
1 parent 44dc2ea commit b0aaddf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ start_server() {
local err='Error: start_server():'
local server
# Bump the value of the defualt_server in starter.ini to lowercase
server=$(echo "$(bash utils.sh parse_ini_value $GITPOD_REPO_ROOT/starter.ini development default_server)" | tr '[:upper:]' '[:lower:]')
server=$(echo "$(bash $GITPOD_REPO_ROOT/bash/utils.sh parse_ini_value $GITPOD_REPO_ROOT/starter.ini development default_server)" | tr '[:upper:]' '[:lower:]')
if [ -z "$server" ]; then
[ "$server" == 'apache' ] && start_apache && return
[ "$server" == 'php' ] && start_php_dev && return
Expand Down

0 comments on commit b0aaddf

Please sign in to comment.