Skip to content
Snippets Groups Projects
Commit 6442ee07 authored by Simon McVittie's avatar Simon McVittie
Browse files

Remove unnecessary exit status check


We're running under `set -e`, so if getopt fails, the script fails.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 3de9da06
Branches
Tags
No related merge requests found
...@@ -131,10 +131,6 @@ getopt_temp="$(getopt -o '' --long \ ...@@ -131,10 +131,6 @@ getopt_temp="$(getopt -o '' --long \
'freedesktop-app-id:,help,home:,interactive,steam-app-id:,verbose' \ 'freedesktop-app-id:,help,home:,interactive,steam-app-id:,verbose' \
-n "$me" -- "$@")" -n "$me" -- "$@")"
if [ $? -ne 0 ]; then
exit $?
fi
eval set -- "$getopt_temp" eval set -- "$getopt_temp"
unset getopt_temp unset getopt_temp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment