Skip to content

Commit

Permalink
Fix testnet script for days mod 9 == 0
Browse files Browse the repository at this point in the history
  • Loading branch information
msinkec committed Feb 9, 2024
1 parent 84e7c9b commit a7b1a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/testnet.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

day_mod=$(expr $(date +%d) % 9)
day_mod=$(expr $(date +%d) % 9) || day_mod=0

echo "day_mod: $day_mod"

Expand Down

0 comments on commit a7b1a64

Please sign in to comment.