aboutsummaryrefslogtreecommitdiff
path: root/bin/osc.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-14 10:09:40 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-14 10:09:40 +1300
commitd18c0c237c5fcd7c7d3484eb591cce0a4f8d104b (patch)
treedc5aaf180d8645b021ca18d22583d034b5aafd31 /bin/osc.sh
parentMerge branch 'release/v0.16.0' (diff)
parentBump version number to 0.17.0 (diff)
downloaddotfiles-d18c0c237c5fcd7c7d3484eb591cce0a4f8d104b.tar.gz
dotfiles-d18c0c237c5fcd7c7d3484eb591cce0a4f8d104b.zip
Merge branch 'release/v0.17.0'v0.17.0
* release/v0.17.0: Bump version number to 0.17.0 Move mapleader settings before .vimrc conf source Strip trailing whitespace Check for shellescape() function before using it Force muttrc filetype from ftdetect rules
Diffstat (limited to 'bin/osc.sh')
-rw-r--r--bin/osc.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/osc.sh b/bin/osc.sh
index 47d62089..86923f12 100644
--- a/bin/osc.sh
+++ b/bin/osc.sh
@@ -1,5 +1,5 @@
# Sane and safe OpenSSL s_client(1ssl) connection
-self=osc
+self=osc
# Check we have openssl(1); we need to fail early lest we go setting up FIFOs
# needlessly
@@ -67,7 +67,7 @@ for sig in EXIT HUP INT TERM ; do
# shellcheck disable=SC2064
trap "cleanup $sig" "$sig"
done
-
+
# Create a temporary directory and a FIFO in it
td=$(mktd "$self") || exit
mkfifo -- "$td"/verify-filter || exit