From 69921e994737773dd241f1534fc56165c53bfef6 Mon Sep 17 00:00:00 2001 From: "Gregory L. Lee" Date: Mon, 13 Oct 2025 14:41:00 -0700 Subject: [PATCH] fix rank list in flux helper script --- tools/flux/flux-helper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/flux/flux-helper.sh b/tools/flux/flux-helper.sh index 25994df..f957b23 100755 --- a/tools/flux/flux-helper.sh +++ b/tools/flux/flux-helper.sh @@ -40,7 +40,7 @@ flux -h > /dev/null 2>&1 || die "flux is not in your path" FLUX_RANK_SET=$(flux jobs -no {ranks} ${FLUX_HELPER_JOBID}) -flux exec -r ${FLUX_RANK_SET} "${@}" +flux exec -r "${FLUX_RANK_SET}" "${@}" # # vi:tabstop=4 shiftwidth=4 expandtab