Skip to content

Commit

Permalink
Remove unnecessary quotations
Browse files Browse the repository at this point in the history
  • Loading branch information
ByteOtter committed May 22, 2024
1 parent b7737ac commit dbac7fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/openqa-verify-pr
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit dbac7fb

Please sign in to comment.