diff options
| author | VG <vg@devys.org> | 2016-06-16 12:20:50 +0200 | 
|---|---|---|
| committer | VG <vg@devys.org> | 2016-06-16 12:20:50 +0200 | 
| commit | 1f975e10b988a48b8a012d74c6903cb546ab0874 (patch) | |
| tree | 6686b9f96972282396d9a61bc7c316dbad96d263 | |
| parent | 0453b2257e6ea3f6028a1aeec74a8e12c440eb9b (diff) | |
| download | pasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.tar.gz pasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.tar.bz2 pasteme-1f975e10b988a48b8a012d74c6903cb546ab0874.zip | |
fix pasteme script to go to the https version
| -rwxr-xr-x | scripts/pasteme | 2 | 
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 | 
