summaryrefslogtreecommitdiff
path: root/bpaste.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bpaste.sh')
-rw-r--r--bpaste.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/bpaste.sh b/bpaste.sh
index de091ab..a795732 100644
--- a/bpaste.sh
+++ b/bpaste.sh
@@ -14,6 +14,9 @@
# projects@yorhel.nl
# License: MIT
#
+# 0.5 - 2016-07-02
+# - Fix inversion of the -c option
+#
# 0.4 - 2016-06-21
# - Remove -l option
#
@@ -36,7 +39,7 @@ HOST=https://p.blicky.net/
SYNTAX=nosyntax
FILE=-
WRAP=0
-CLICK=0
+CLICK=1
VERSION=0.4
@@ -62,7 +65,7 @@ while getopts 'h:s:f:wcl?' opt; do
s) SYNTAX=$OPTARG ;;
f) FILE=$OPTARG ;;
w) WRAP=1 ;;
- c) CLICK=1 ;;
+ c) CLICK=0 ;;
?) showhelp ;;
esac
done