Adjust script outputs and help messages

This commit is contained in:
Slava 2024-11-11 15:40:33 +02:00
parent 66da25ff89
commit 1359f952f1
No known key found for this signature in database
GPG Key ID: 351E7AA9BD0DFEB8

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
set -e set -e
# Install Codex on Linux, macOS, and Windows(msys2) # Install Codex on Linux, macOS, and Windows(msys2)
@ -22,12 +22,13 @@ FAIL_MARK="\033[0;31m\u2718\033[0m"
# Help # Help
if [[ $1 == *"h"* ]] ; then if [[ $1 == *"h"* ]] ; then
SCRIPT_URL="https://get.codex.storage/install.sh"
echo -e " echo -e "
\e[33mUsage:\e[0m \e[33mUsage:\e[0m
curl https://get.codex.storage/`basename $0` | bash curl "${SCRIPT_URL}" | bash
curl https://get.codex.storage/`basename $0` | VERSION=0.1.7 bash curl "${SCRIPT_URL}" | VERSION=0.1.7 bash
curl https://get.codex.storage/`basename $0` | VERSION=0.1.7 INSTALL_CIRDL=true bash curl "${SCRIPT_URL}" | VERSION=0.1.7 INSTALL_CIRDL=true bash
curl https://get.codex.storage/`basename $0` | bash -s help curl "${SCRIPT_URL}" | bash -s help
\e[33mOptions:\e[0m \e[33mOptions:\e[0m
- help - show this help - help - show this help
@ -41,7 +42,7 @@ fi
# Show # Show
show_start() { show_start() {
echo -e "\n \e[4m${1}\e[0m\n" echo -e "\n \e[33m${1}\e[0m\n"
} }
show_progress() { show_progress() {