From f2a352352c5c0451b275423ddf539a960312d536 Mon Sep 17 00:00:00 2001 From: Theodore Vasiloudis Date: Thu, 16 May 2024 22:50:22 +0300 Subject: [PATCH] [GSProcessing] Fix arg parsing error in push_gsprocessing_image (#847) *Issue #, if available:* *Description of changes:* * Fix the flag letter for architecture during GSP image push By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. --- graphstorm-processing/docker/push_gsprocessing_image.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphstorm-processing/docker/push_gsprocessing_image.sh b/graphstorm-processing/docker/push_gsprocessing_image.sh index 7df2f820dd..60e97b0416 100644 --- a/graphstorm-processing/docker/push_gsprocessing_image.sh +++ b/graphstorm-processing/docker/push_gsprocessing_image.sh @@ -58,7 +58,7 @@ parse_params() { EXEC_ENV="${2-}" shift ;; - -a | --architecture) + -c | --architecture) ARCH="${2-}" shift ;;