diff options
Diffstat (limited to 'pbuilder-checkparams')
-rwxr-xr-x | pbuilder-checkparams | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pbuilder-checkparams b/pbuilder-checkparams index 00adfbf..40797ad 100755 --- a/pbuilder-checkparams +++ b/pbuilder-checkparams @@ -156,6 +156,11 @@ while [ -n "$1" ]; do BINDMOUNTS="${BINDMOUNTS} $2" shift; shift; ;; + --debootstrapopts) + # specify this option to set --variant=buildd value to debootstrap + DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; + shift; shift; + ;; ## pdebuild option --auto-debsign) AUTO_DEBSIGN="yes" @@ -173,11 +178,6 @@ while [ -n "$1" ]; do USE_PDEBUILD_INTERNAL=yes; shift; ;; - --debootstrapopts) - # specify this option to set --variant=buildd value to debootstrap - DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; - shift; shift; - ;; ## internal options. --internal-chrootexec) # specify custom chrootexec function -- this is internal debugging function |