mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-08-23 22:16:48 +00:00
bugfixes
This commit is contained in:
+6
-3
@@ -6,14 +6,17 @@
|
||||
# description: |
|
||||
# for the people like us that are too lazy even to run `curl https://webinstall.dev/PACKAGE_NAME` - just `webi PACKAGE_NAME` instead
|
||||
|
||||
cat << EOF > ~/.local/bin/webi
|
||||
set -e
|
||||
set -u
|
||||
|
||||
my_package=${1:-}
|
||||
if [ -z "$my_package" ]; then
|
||||
my_package=\${1:-}
|
||||
if [ -z "\$my_package" ]; then
|
||||
echo "Usage: webi <package>"
|
||||
echo "Example: webi node"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
curl -fsSL "https://webinstall.dev/$my_package" | bash
|
||||
curl -fsSL "https://webinstall.dev/\$my_package" | bash
|
||||
EOF
|
||||
chmod a+x ~/.local/bin/webi
|
||||
|
||||
Reference in New Issue
Block a user