Files
proxmox/scripts/mint-all-c-star-138.sh
defiQUG e4c9dda0fd
Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
chore: update submodule references and documentation
- Marked submodules ai-mcp-pmm-controller, explorer-monorepo, and smom-dbis-138 as dirty to reflect recent changes.
- Updated documentation to clarify operator script usage, including dotenv loading and task execution instructions.
- Enhanced the README and various index files to provide clearer navigation and task completion guidance.

Made-with: Cursor
2026-03-04 02:03:08 -08:00

10 lines
410 B
Bash
Executable File

#!/usr/bin/env bash
# Wrapper: run smom-dbis-138/scripts/mint-all-c-star-138.sh from repo root.
# Usage: ./scripts/mint-all-c-star-138.sh [amount_human]
# Example: ./scripts/mint-all-c-star-138.sh 1000000
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
SMOM="${REPO_ROOT}/smom-dbis-138"
[ -d "$SMOM" ] || { echo "Not found: $SMOM"; exit 1; }
exec bash "$SMOM/scripts/mint-all-c-star-138.sh" "$@"