diff --git a/README.md b/README.md index 6d114c9..c924ba2 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Just put both `warp4j` and `warp-packer` somewhere in your PATH and run `warp4j Curl one-liner installs latest versions of both `warp4j` and `warp-packer`: ``` -$ bash -c "$(curl -fsSL https://raw.githubusercontent.com/guziks/warp4j/stable/install)" +$ bash -c "$(curl -fsSL https://git.kirby-link.dd-dns.de/public/warp4j/src/branch/feature/manual_and_auto_classpath_option/install)" ``` This script will show missing dependencies (if there are any), they must be installed with your package manager. diff --git a/install b/install index 6000523..3337a1a 100755 --- a/install +++ b/install @@ -35,7 +35,7 @@ THIS_PLATFORM=$(get_this_platform) function get_latest_warp_link() { local this_platform=$1 local info - info=$(curl -fsSL https://api.github.com/repos/dgiagio/warp/releases) + info=$(curl -fsSL https://git.kirby-link.dd-dns.de/api/v1/repos/public/warp/releases?draft=false&pre-release=false) if [[ $? != 0 ]]; then echo "Error: Failed to get information about releases" >&2 fail @@ -91,7 +91,7 @@ function get_missing_deps() { done } -WARP4J_LINK="https://raw.githubusercontent.com/guziks/warp4j/stable/warp4j" +WARP4J_LINK="https://git.kirby-link.dd-dns.de/public/warp4j/raw/branch/feature/manual_and_auto_classpath_option/warp4j" echo "Getting information about warp-packer releases..." WARP_LINK=$(get_latest_warp_link $THIS_PLATFORM)