diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-05-03 00:58:18 +0100 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-05-03 01:31:47 +0100 |
commit | 43b4f9cdf62972bff5cff45f895305c391a895f2 (patch) | |
tree | f9c7628c66999bad84efed0de9183821e5013e84 /scripts/build/chroot_archives | |
parent | 372a8fd91a9ec22c22250e4a0322432305b69a9f (diff) | |
download | vyos-live-build-43b4f9cdf62972bff5cff45f895305c391a895f2.tar.gz vyos-live-build-43b4f9cdf62972bff5cff45f895305c391a895f2.zip |
adjust action arg consumption order
did not properly consider all usage cases properly in deciding placement.
this captured `--usage` in `$PROGRAM --usage` as the action for instance.
Gbp-Dch: Ignore
Diffstat (limited to 'scripts/build/chroot_archives')
-rwxr-xr-x | scripts/build/chroot_archives | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/build/chroot_archives b/scripts/build/chroot_archives index c6d4c1b84..7f13a4a7d 100755 --- a/scripts/build/chroot_archives +++ b/scripts/build/chroot_archives @@ -18,6 +18,9 @@ set -e DESCRIPTION="Manage /etc/apt/sources.list" USAGE="${PROGRAM} {source|binary|chroot} {install|remove} [--force]" +# Processing arguments and configuration files +Init_config_data "${@}" + _PASS="${1}" _ACTION="${2}" shift 2 @@ -26,9 +29,6 @@ if ! In_list "${_PASS}" "binary" "chroot" "source"; then Usage --fail fi -# Processing arguments and configuration files -Init_config_data "${@}" - # Requiring stage file Require_stagefiles config bootstrap |