diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build/chroot_archives | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/build/chroot_archives b/scripts/build/chroot_archives index 8f83906f0..472b76785 100755 --- a/scripts/build/chroot_archives +++ b/scripts/build/chroot_archives @@ -16,12 +16,13 @@ set -e # Setting static variables DESCRIPTION="Manage /etc/apt/sources.list" HELP="" -USAGE="${PROGRAM} {source|binary} {install|remove} [--force]" +USAGE="${PROGRAM} {source|binary|chroot} {install|remove} [--force]" _PASS="${1}" shift -if [ "${_PASS}" != "binary" ] && [ "${_PASS}" != "source" ]; then +if [ "${_PASS}" != "binary" ] && [ "${_PASS}" != "chroot" ] && [ "${_PASS}" != "source" ] +then Usage fi |