aboutsummaryrefslogtreecommitdiff
path: root/ksh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2021-11-16 11:18:53 +1300
committerTom Ryder <tom@sanctum.geek.nz>2021-11-16 11:18:53 +1300
commit395b3f0b8587c7328fdb6a336ccda986e2d0645f (patch)
treea3d26174f0021e9d3e1bf14c4506873dc0fc219e /ksh
parentMerge branch 'release/v11.8.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-11.9.0.tar.gz (sig)
dotfiles-11.9.0.zip
Merge branch 'release/v11.9.0'v11.9.0
* release/v11.9.0: Remove actual plmu program Ignore a file inclusion warning Ignore SC2296 for a subtlety of ksh93 Use consistent punctuation in vimrc comments Switch to newsboat-dtach system service method Revert "Add a basic system-wide push-to-talk" Add a basic system-wide push-to-talk Correct mis-escaped dollar sign in scrot script Add hour/minute/second timestamp to scrot files Restore title bars to i3 windows Revert "Remove i3 workspace labels for now" Switch to lossless WEBP (converted) for scrots
Diffstat (limited to 'ksh')
-rw-r--r--ksh/shrc.d/ksh.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/ksh/shrc.d/ksh.sh b/ksh/shrc.d/ksh.sh
index 9e032756..f074c832 100644
--- a/ksh/shrc.d/ksh.sh
+++ b/ksh/shrc.d/ksh.sh
@@ -21,10 +21,11 @@ if [ -z "$KSH_VERSION" ] ; then
# Test whether we have content in the .sh.version variable. Suppress
# errors and run it in a subshell to work around parsing error precedence.
- # shellcheck disable=SC2234
+ # shellcheck disable=SC2234,SC2296
( test -n "${.sh.version}" ) 2>/dev/null || return
# If that peculiarly named variable was set, then that's our KSH_VERSION
+ # shellcheck disable=SC2296
KSH_VERSION=${.sh.version}
fi