From 3ae982051d7b6c9312f19618ff63c4b58f5ea5cc Mon Sep 17 00:00:00 2001 From: kannar Date: Mon, 11 Mar 2024 15:47:31 +0100 Subject: [PATCH] fix gists raw url Previous pattern: https://gist.github.com/raw// is now http 404 New pattern looks to be: https://gist.github.com///raw which is http 200 --- wgetpaste | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgetpaste b/wgetpaste index e38f9e5..a270ddd 100755 --- a/wgetpaste +++ b/wgetpaste @@ -171,7 +171,7 @@ rb rs sage sass scala scm sci scss self sh st tpl sql sml sc tcl tcsh tea tex textile t twig vala v vhd vim vb xml xq xs yml auto" DEFAULT_LANGUAGE_gists="Auto" REGEX_URL_gists='s|^.*"html_url": "\([^"]\+gist[^"]\+\)".*$|\1|p' -REGEX_RAW_gists='s|^\(https://gist.github.com\)\(/.*\)$|\1/raw\2|' +REGEX_RAW_gists='s|^\(https://gist.github.com\)\(/.*\)$|\1\2/raw|' escape_description_gists() { sed -e 's|"|\\"|g' -e 's|\x1b|\\u001b|g' -e 's|\r||g' <<< "$*"; } escape_input_gists() { sed -e 's|\\|\\\\|g' -e 's|\x1b|\\u001b|g' -e 's|\r||g' -e 's|\t|\\t|g' -e 's|"|\\"|g' -e 's|$|\\n|' <<< "$*" | tr -d '\n'; } POST_gists() {