Title: Update zrep function to exit instead of return

- Changed `return 1` to `exit 1` in zrep_parse_remote function.
This commit is contained in:
Stig-Ørjan Smelror 2024-03-16 00:29:07 +01:00
parent a64e876b7d
commit 255649a53e

2
zrep
View File

@ -275,7 +275,7 @@ function zrep_parse_remote() {
else
zrep_msg debug "\nPackage ${package} not found."
return 1
exit 1
fi
}