Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
MAINT: Fix ShellCheck SC2004
  • Loading branch information
pan14001 committed May 16, 2019
1 parent 3a86637 commit 52ee38c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/script_that_sometimes_fails.sh
Expand Up @@ -15,7 +15,7 @@ prng () {
b=$seed
m=$SLURM_NTASKS
# Workaround bug# 4
if (( $b % $m == 0 ))
if (( b % m == 0 ))
then
b+=1
fi
Expand Down

0 comments on commit 52ee38c

Please sign in to comment.