Skip to content

Commit

Permalink
add abort if sources failed to load
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Dec 17, 2023
1 parent 02ece37 commit 0cbf61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions installation/install-jukebox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ _download_jukebox_source() {
_load_sources() {
# Load / Source dependencies
for i in "${INSTALLATION_PATH}"/installation/includes/*; do
source "$i"
source "$i" || exit_on_error
done

for j in "${INSTALLATION_PATH}"/installation/routines/*; do
source "$j"
source "$j" || exit_on_error
done
}

Expand Down

0 comments on commit 0cbf61e

Please sign in to comment.