From 52ee38c1f562b32ba28f519db25f32ecf530709d Mon Sep 17 00:00:00 2001 From: Pariksheet Nanda Date: Thu, 16 May 2019 16:34:45 -0400 Subject: [PATCH] MAINT: Fix ShellCheck SC2004 --- examples/script_that_sometimes_fails.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/script_that_sometimes_fails.sh b/examples/script_that_sometimes_fails.sh index 1da672c..bdb7092 100755 --- a/examples/script_that_sometimes_fails.sh +++ b/examples/script_that_sometimes_fails.sh @@ -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