1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-21 21:43:08 +00:00

installer_build: fix image upload on non-x86_64

Let's not hardcode the arch in the upload_asset call!

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2023-09-06 17:24:35 -07:00
parent deb25acdf9
commit d8efb7df1d

View File

@ -36,7 +36,7 @@ sub run {
# good to have the log around for checks # good to have the log around for checks
upload_logs "pylorax.log", failok => 1; upload_logs "pylorax.log", failok => 1;
assert_script_run "mv results/images/boot.iso ./${advortask}-netinst-${arch}.iso"; assert_script_run "mv results/images/boot.iso ./${advortask}-netinst-${arch}.iso";
upload_asset "./${advortask}-netinst-x86_64.iso"; upload_asset "./${advortask}-netinst-${arch}.iso";
} }
sub test_flags { sub test_flags {