aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-06-16 12:20:50 +0200
committerVG <vg@devys.org>2016-06-16 12:20:50 +0200
commit1f975e10b988a48b8a012d74c6903cb546ab0874 (patch)
tree6686b9f96972282396d9a61bc7c316dbad96d263
parent0453b2257e6ea3f6028a1aeec74a8e12c440eb9b (diff)
downloadpasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.tar.gz
pasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.tar.bz2
pasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.zip
fix pasteme script to go to the https version
-rwxr-xr-xscripts/pasteme2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/pasteme b/scripts/pasteme
index c6b9d3f..2f8f1d2 100755
--- a/scripts/pasteme
+++ b/scripts/pasteme
@@ -2,7 +2,7 @@
tempfile="$(mktemp)"
cat "${1:--}" > $tempfile
curl -w '%{redirect_url}\n' --data-urlencode content@$tempfile \
- http://paste.devys.org/
+ https://paste.devys.org/
rc=$?
rm $tempfile
exit $rc