aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2021-12-24 20:44:20 +1300
committerTom Ryder <tom@sanctum.geek.nz>2021-12-24 20:44:20 +1300
commitca722bd3602a9ae2b44b3e41eea319592f61f613 (patch)
tree4e81023974098e50c895c8e85879e900fa73c084
parentMerge branch 'release/v11.9.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-ca722bd3602a9ae2b44b3e41eea319592f61f613.tar.gz
dotfiles-ca722bd3602a9ae2b44b3e41eea319592f61f613.zip
Merge branch 'release/v11.10.0'v11.10.0
* release/v11.10.0: Add --no-warnings to rlwrap calls
-rw-r--r--VERSION4
-rw-r--r--bin/clog.sh3
-rw-r--r--bin/osc.sh2
-rw-r--r--sh/shrc.d/ed.sh2
4 files changed, 6 insertions, 5 deletions
diff --git a/VERSION b/VERSION
index 4b83de4c..1e72aa29 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v11.9.0
-Mon, 15 Nov 2021 22:18:21 +0000
+tejr dotfiles v11.10.0
+Fri, 24 Dec 2021 07:44:16 +0000
diff --git a/bin/clog.sh b/bin/clog.sh
index 3269c508..a5c777e8 100644
--- a/bin/clog.sh
+++ b/bin/clog.sh
@@ -3,7 +3,8 @@
# Build the cat(1) command we'll run, wrapping it in rlwrap(1) if available and
# applicable.
if [ "$#" -eq 0 ] && [ -t 0 ] && command -v rlwrap >/dev/null 2>&1 ; then
- set -- rlwrap --history-filename=/dev/null cat -- "${@:--}"
+ set -- rlwrap --history-filename=/dev/null --no-warnings \
+ cat -- "${@:--}"
else
set -- cat -- "${@:--}"
fi
diff --git a/bin/osc.sh b/bin/osc.sh
index 5def12ff..2853f1a5 100644
--- a/bin/osc.sh
+++ b/bin/osc.sh
@@ -17,7 +17,7 @@ serv=${2:-https}
set --
## If we have rlwrap, use it, but don't complain if we don't
if command -v rlwrap >/dev/null 2>&1 ; then
- set -- "$@" rlwrap --history-filename=/dev/null
+ set -- "$@" rlwrap --history-filename=/dev/null --no-warnings
fi
## The actual openssl(1ssl) and subcommand call
set -- "$@" openssl s_client
diff --git a/sh/shrc.d/ed.sh b/sh/shrc.d/ed.sh
index dc8433f6..0591e18d 100644
--- a/sh/shrc.d/ed.sh
+++ b/sh/shrc.d/ed.sh
@@ -22,7 +22,7 @@ ed() {
# Run in rlwrap(1) if available
set -- ed "$@"
if command -v rlwrap >/dev/null 2>&1 ; then
- set -- rlwrap --history-filename=/dev/null "$@"
+ set -- rlwrap --history-filename=/dev/null --no-warnings "$@"
fi
# Run determined command