From 645c9b40985b907db0c0bb3d776f76559454ba4a Mon Sep 17 00:00:00 2001 From: Serge Guzik Date: Sun, 17 Feb 2019 13:04:24 +0200 Subject: [PATCH] docs: Install stable version --- INSTALL.md | 2 +- README.md | 2 +- install | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 636d00b..b9ed4e2 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -8,7 +8,7 @@ First install [warp-packer](https://github.com/dgiagio/warp/releases) and ensure ``` $ LOCATION=/usr/local/bin \ -LINK=https://raw.githubusercontent.com/guziks/warp4j/master/warp4j \ +LINK=https://raw.githubusercontent.com/guziks/warp4j/stable/warp4j \ TEMP_LOCATION=/tmp/warp4j \ bash -c 'curl -fsSL -o $TEMP_LOCATION $LINK && \ sudo install -D \ diff --git a/README.md b/README.md index 70cad37..5407371 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/master/install)" +$ bash -c "$(curl -fsSL https://raw.githubusercontent.com/guziks/warp4j/stable/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 9a9090e..6000523 100755 --- a/install +++ b/install @@ -91,7 +91,7 @@ function get_missing_deps() { done } -WARP4J_LINK="https://raw.githubusercontent.com/guziks/warp4j/master/warp4j" +WARP4J_LINK="https://raw.githubusercontent.com/guziks/warp4j/stable/warp4j" echo "Getting information about warp-packer releases..." WARP_LINK=$(get_latest_warp_link $THIS_PLATFORM)