X-Git-Url: https://git.josue.xyz/?a=blobdiff_plain;f=webi%2Finstall.bash;fp=webi%2Finstall.bash;h=0000000000000000000000000000000000000000;hb=5e0debf4c54c1e55476c1bc533c26db2b54d2f77;hp=25c49a1e706715b1bc1ca95ded4e32d5f5607fd0;hpb=969df21e47c4d8312925638739a23eef0c349e1c;p=webi-installers%2F.git diff --git a/webi/install.bash b/webi/install.bash deleted file mode 100644 index 25c49a1..0000000 --- a/webi/install.bash +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/bash - -# title: Webi -# homepage: https://webinstall.dev -# tagline: webinstall.dev for the CLI -# description: | -# for the people like us that are too lazy even to run curl https://webinstall.dev/PACKAGE_NAME | bash -# examples: | -# ```bash -# webi node@latest -# ``` -#
-# -# ```bash -# webi golang@v1.14 -# ``` -#
-# -# ```bash -# webi rustlang -# ``` - -if [ -f "$HOME/.local/bin/webi" ]; then - set +e - cur_webi="$(command -v webi)" - set -e - if [ -z "$cur_webi" ]; then - webi_path_add "$HOME/.local/bin" - fi - echo "Installed 'webi'" -else - # for when this file is run on its own, not from webinstall.dev - echo "Install any other package via https://webinstall.dev and webi will be installed as part of the bootstrap process" -fi