index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Toolybird <toolybird@tuta.io> | 2023-05-24 16:31:57 +1000 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2023-05-26 01:06:14 +0200 |
commit | 71cb9e97bb584bcb7142abde715237fb8d0fa69e (patch) | |
tree | fe4cad81e4ad96f356b5ae8c50a57562dd73e9b3 /src/makerepropkg.in | |
parent | 1b808b8e322effe8ca31a9c6d5be29e8a44e16e6 (diff) |
-rw-r--r-- | src/makerepropkg.in | 5 |
diff --git a/src/makerepropkg.in b/src/makerepropkg.in index 61ee9db..398d4af 100644 --- a/src/makerepropkg.in +++ b/src/makerepropkg.in @@ -125,6 +125,9 @@ OPTIONS __EOF__ } +# save all args for check_root +orig_args=("$@") + while getopts 'dM:c:l:h' arg; do case "$arg" in d) diffoscope=1 ;; @@ -137,7 +140,7 @@ while getopts 'dM:c:l:h' arg; do done shift $((OPTIND - 1)) -check_root "" "${BASH_SOURCE[0]}" "$@" +check_root "" "${BASH_SOURCE[0]}" "${orig_args[@]}" [[ -f PKGBUILD ]] || { error "No PKGBUILD in current directory."; exit 1; } |