From dbac7fb1c59c930775b31d1d9c281669a2861d5d Mon Sep 17 00:00:00 2001 From: ByteOtter Date: Wed, 22 May 2024 16:36:03 +0200 Subject: [PATCH] Remove unnecessary quotations --- script/openqa-verify-pr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/openqa-verify-pr b/script/openqa-verify-pr index b48fa18119a..3a81bc3299b 100755 --- a/script/openqa-verify-pr +++ b/script/openqa-verify-pr @@ -94,19 +94,19 @@ fi export GITHUB_TOKEN=$config -if [ "$source" = "opensuse" ]; then +if [ $source = 'opensuse' ]; then echo "Dispatching verification run for opensuse..." openqa-clone-custom-git-refspec "https://github.com/os-autoinst/os-autoinst-distri-opensuse/pull/$pr_id" \ "https://openqa.opensuse.org/tests/$test_id" \ SCHEDULE="tests/installation/bootloader_start,tests/boot/boot_to_desktop,$modules" \ TEST="$test_name" -elif [ "$source" = "suse" ]; then +elif [ $source = 'suse' ]; then echo "Dispatching verification run for suse..." openqa-clonse-custom-git-refspec "https://github.com/os-autoinst-distri-opensuse/pull/$pr_id" \ "https://openqa.suse.de/tests/$test_id" \ SCHEDULE="tests/installation/bootloader_start,tests/boot/boot_to_desktop,$modules" \ TEST="$test_name" -elif [ "$source" = "custom" ]; then +elif [ $source = 'custom' ]; then echo "Dispatching verification run for your custom target '$custom_target'..." openqa-clone-custom-git-refspec "https://github.com/os-autoinst-distri-opensuse/pull/$pr_id" \ "$custom_target/tests/$test_id" \