From ec540a0cbcc68fe04f36456f830b25bfb14bf55e Mon Sep 17 00:00:00 2001 From: Q Date: Thu, 8 Aug 2024 21:31:17 +0300 Subject: [PATCH] change urls --- bake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bake b/bake index a410e07..4ab301f 100755 --- a/bake +++ b/bake @@ -6,7 +6,7 @@ ## by adding the functions under this text, and setting ## STANDALONE=true ## -## LICENSE: The Unlicense, https://github.com/moonq/bake/blob/main/LICENSE +## LICENSE: The Unlicense, https://git.six9.net/moonq/bake/src/branch/main/LICENSE # Target functions MUST be of format: "name() { # Menu description" set -e # In standalone mode, this script also contains targets @@ -117,10 +117,10 @@ _update_self() { printf "\e[36mUpdate: %s ▶ %s\e[0m\n" \ "$( grep "^## VERSION" "$0" | awk '{ print $3 }' )" \ "$( curl -s -S -f \ - "https://raw.githubusercontent.com/moonq/bake/main/bake" | \ + "https://git.six9.net/moonq/bake/raw/branch/main/bake" | \ grep "^## VERSION" | awk '{ print $3 }' )" >&2 || true curl -S -f -o "$0" -z "$0" \ - "https://raw.githubusercontent.com/moonq/bake/main/bake" + "https://git.six9.net/moonq/bake/raw/branch/main/bake" chmod +x "$0" echo Updated. >&2 }