aboutsummaryrefslogtreecommitdiff
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
parentMerge branch 'release/v10.18.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-b4487c68ab290c57cff0c4918a68eb53852d964e.tar.gz
dotfiles-b4487c68ab290c57cff0c4918a68eb53852d964e.zip
Merge branch 'release/v10.19.0'v10.19.0
* release/v10.19.0: Remove superfluous `exit` calls at end of `BEGIN`
-rw-r--r--VERSION4
-rw-r--r--bin/rndi.awk3
-rw-r--r--bin/uts.awk1
3 files changed, 2 insertions, 6 deletions
diff --git a/VERSION b/VERSION
index 8f41c95d..f0c6be0f 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v10.18.0
-Sat, 14 Nov 2020 10:20:10 +0000
+tejr dotfiles v10.19.0
+Thu, 19 Nov 2020 01:47:23 +0000
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
diff --git a/bin/uts.awk b/bin/uts.awk
index 3aaec2ab..a7b3ef5d 100644
--- a/bin/uts.awk
+++ b/bin/uts.awk
@@ -2,5 +2,4 @@
BEGIN {
srand()
print srand()
- exit
}