Add artichoke-dev to install the latest Artichoke nightly build

Allow to install the latest official Artichoke nightly build from https://github.com/artichoke/nightly/releases
This commit is contained in:
deepj 2020-04-29 22:59:52 +02:00
parent 3ef704e7ad
commit c27fc59ad8
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,12 @@
case $(uname -s) in
Linux)
install_package "artichoke-nightly" "https://github.com/artichoke/nightly/releases/latest/download/artichoke-nightly-x86_64-unknown-linux-gnu.tar.gz" artichoke
;;
Darwin)
install_package "artichoke-nightly" "https://github.com/artichoke/nightly/releases/latest/download/artichoke-nightly-x86_64-apple-darwin.tar.gz" artichoke
;;
*)
colorize 1 "Unsupported operating system: $(uname -s)"
return 1
;;
esac