From 6a307ed322ba219e36c5f40e41dfb7c7c6f57d8a Mon Sep 17 00:00:00 2001 From: Marco Vedovati Date: Mon, 10 Sep 2018 16:12:04 +0200 Subject: [PATCH] osbuilder: Remove redundant argument to test_image.sh Remove the redundant `--distro` argument; when needed, the distro can be specified using a positional argument. Fixes: #158 Signed-off-by: Marco Vedovati --- tests/test_images.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_images.sh b/tests/test_images.sh index 00498517e..33410401a 100755 --- a/tests/test_images.sh +++ b/tests/test_images.sh @@ -42,7 +42,6 @@ Usage: $script_name [help|] Options: -h | --help # Show usage. - --distro # Only run tests for specified distro. --list # List all distros that can be tested. --test-images-only # Only run images tests for the list of distros under test. --test-initrds-only # Only run initrds tests for the list of distros under test. @@ -478,8 +477,6 @@ main() while [ $# -gt 1 ] do case "$1" in - --distro) distro="$2";; - -h|--help) usage; exit 0 ;; --list) list_distros; exit 0;;