mirror of
https://github.com/logos-storage/get.codex.storage.git
synced 2026-01-02 13:13:07 +00:00
17 lines
303 B
Bash
17 lines
303 B
Bash
|
|
# Codex Devnet - Generate
|
||
|
|
|
||
|
|
# Variables
|
||
|
|
set -a
|
||
|
|
BASE_SCRIPT="https://get.codex.storage/generate.sh"
|
||
|
|
SCRIPT_URL="https://get.codex.storage/devnet/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
|