mirror of
https://github.com/logos-storage/get.codex.storage.git
synced 2026-01-02 13:13:07 +00:00
17 lines
305 B
Bash
Executable File
17 lines
305 B
Bash
Executable File
# Codex Testnet - Generate
|
|
|
|
# Variables
|
|
set -a
|
|
BASE_SCRIPT="https://get.codex.storage/generate.sh"
|
|
SCRIPT_URL="https://get.codex.storage/testnet/generate.sh"
|
|
set +a
|
|
|
|
# Help
|
|
if [[ $1 == *"help"* ]] ; then
|
|
curl -s "${BASE_SCRIPT}" | bash -s -- help
|
|
exit 0
|
|
fi
|
|
|
|
# Generate
|
|
curl -s "${BASE_SCRIPT}" | bash
|