Skip to content

Commit

Permalink
updater.sh: fix ignored errors
Browse files Browse the repository at this point in the history
  • Loading branch information
sertonix committed Apr 26, 2024
1 parent 33a84b6 commit d77224c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions updater.sh
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ update_userjs() {
fi

[ "$VIEW" = true ] && open_file "${PWD}/user.js"

return 0
}

#########################
Expand Down Expand Up @@ -388,7 +390,7 @@ if [ $# != 0 ]; then
fi

show_banner
update_updater "$@"
update_updater "$@" || exit $?

getProfilePath # updates PROFILE_PATH or exits on error
cd "$PROFILE_PATH" || exit 1
Expand All @@ -402,6 +404,6 @@ you will need to change ownership of the following files to your user:\n'
exit 1
fi

update_userjs
update_userjs || exit $?

cd "$CURRDIR"

0 comments on commit d77224c

Please sign in to comment.