From 32b421be82c2d2ee83259964b739f2604ce83bd9 Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Sat, 10 Jul 2021 19:23:10 -0500 Subject: [PATCH] Change random to print the result --- rowbot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rowbot b/rowbot index ef67b48..6d90618 100755 --- a/rowbot +++ b/rowbot @@ -79,7 +79,7 @@ is_running () { random() { local min=$1 max=$2 - (( (RANDOM % max) + min )) + printf %d "$(( (RANDOM % max) + min ))" } run_callbacks() {