Skip to content

Commit

Permalink
bugfix elif
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Dec 17, 2023
1 parent 2f57174 commit 02ece37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/routines/setup_jukebox_webapp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ _jukebox_webapp_download() {
if validate_url ${download_url_commit} ; then
log " DOWNLOAD_URL ${download_url_commit}"
download_from_url ${download_url_commit} ${tar_filename}
else [[ $ENABLE_WEBAPP_PROD_DOWNLOAD == true ]] && validate_url ${download_url_latest}
elif [[ $ENABLE_WEBAPP_PROD_DOWNLOAD == true ]] && validate_url ${download_url_latest} ; then
log " DOWNLOAD_URL ${download_url_latest}"
download_from_url ${download_url_latest} ${tar_filename}
else
Expand Down

0 comments on commit 02ece37

Please sign in to comment.