magicciv/scripts/run/export.sh
Claude Code c1e75bb984 chore(scripts): 🔧 Update and reorganize automation scripts for CI/CD workflows
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-03-31 07:59:21 -07:00

12 lines
225 B
Bash

#!/usr/bin/env bash
# Export commands: all platforms
cmd_export() {
"$REPO_ROOT/tools/export.sh" "$@"
}
cmd_export_single() {
local platform="$1"
shift
"$REPO_ROOT/tools/export-single.sh" "$platform" "$@"
}