Skip to content

Commit

Permalink
Function process_input: return 1 on fail, don't exit with 1
Browse files Browse the repository at this point in the history
  • Loading branch information
igorpecovnik committed Oct 9, 2024
1 parent 388ce4e commit a9a59e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/armbian-configng/config.ng.functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ menu_options+=(
function process_input() {
local input="$1"
if [ "$input" = "No" ]; then
exit 1
return 1
fi
}

Expand Down

0 comments on commit a9a59e9

Please sign in to comment.