Skip to content

Commit 06e104b

Browse files
authored
Merge pull request #447 from ExaWorks/fix_assignment_in_slurm
Ooops
2 parents 707429f + e47cdb8 commit 06e104b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/executors/batch/slurm/slurm.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ _PSIJ_NC=`scontrol show hostnames | wc -l`
9494
form, we need to duplicate each node line by PPN, which we need to calculate}}
9595
if [ "$_PSIJ_PPN" == "" ]; then
9696
if [ "$_PSIJ_NC" != "" ] && [ "$_PSIJ_PC" != "" ]; then
97-
$_PSIJ_PPN=$((_PSIJ_PC/_PSIJ_NC))
97+
_PSIJ_PPN=$((_PSIJ_PC/_PSIJ_NC))
9898
fi
9999
fi
100100

0 commit comments

Comments
 (0)