aboutsummaryrefslogtreecommitdiff
path: root/bin/rndi.awk
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-11-19 14:47:27 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-11-19 14:47:27 +1300
commitb4487c68ab290c57cff0c4918a68eb53852d964e (patch)
treee221eb2fd2281065bfbed468d711b1b72fb1ddef /bin/rndi.awk
parentMerge branch 'release/v10.18.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-10.19.0.tar.gz (sig)
dotfiles-10.19.0.zip
Merge branch 'release/v10.19.0'v10.19.0
* release/v10.19.0: Remove superfluous `exit` calls at end of `BEGIN`
Diffstat (limited to 'bin/rndi.awk')
-rw-r--r--bin/rndi.awk3
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/rndi.awk b/bin/rndi.awk
index 7d9c640b..44989d11 100644
--- a/bin/rndi.awk
+++ b/bin/rndi.awk
@@ -30,9 +30,6 @@ BEGIN {
# Print a random integer bounded by the first and second arguments
print int(lower + rand() * (upper - lower + 1))
-
- # Bail before processing any lines
- exit
}
# Bailout function