aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2022-08-04 14:08:36 +1200
committerTom Ryder <tom@sanctum.geek.nz>2022-08-04 14:08:36 +1200
commita3e1ee2129a4b4e5c64b33866679ed77763de325 (patch)
tree26c1067b37dea50cff7b26032998c748d7171b89
parentMerge branch 'release/v12.15.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-a3e1ee2129a4b4e5c64b33866679ed77763de325.tar.gz
dotfiles-a3e1ee2129a4b4e5c64b33866679ed77763de325.zip
Merge branch 'release/v12.16.0'v12.16.0
* release/v12.16.0: Correct slsf(1df) nosls logic
-rw-r--r--VERSION4
-rw-r--r--bin/slsf.awk2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index 5968a541..a096e0ae 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v12.15.0
-Thu, 04 Aug 2022 01:57:51 +0000
+tejr dotfiles v12.16.0
+Thu, 04 Aug 2022 02:08:25 +0000
diff --git a/bin/slsf.awk b/bin/slsf.awk
index 87127a2c..75efe7a4 100644
--- a/bin/slsf.awk
+++ b/bin/slsf.awk
@@ -2,7 +2,7 @@
# Manage the processing flag (starts set in each file)
BEGIN { sls = 1 }
-FNR { sls = 1 }
+FNR == 1 { sls = 1 }
/### sls/ { sls = 1 }
/### nosls/ { sls = 0 }