Files
ss-tools/scripts/build_offline_docker_bundle.sh
root 632b730fff chore: migrate GRACE-Poly anchors to hierarchical dotted naming
Systematic rename of all semantic anchors (#region, [DEF], @RELATION)
across 1400+ files — backend Python, frontend Svelte/TS, specs, docs:
- Flat anchors become Namespace.Module.Entity
- @RELATION references updated to match new anchor paths
- Zero business logic changes
2026-07-22 11:48:15 +03:00

23 lines
666 B
Bash
Executable File

#!/usr/bin/env bash
# #region Tooling.BuildOfflineDockerBundle [C:1] [TYPE Module]
# @PURPOSE: Thin wrapper — delegates to ./build.sh bundle (.tar.xz output)
# @COMPLEXITY: 1
# @RATIONALE: Unified into build.sh to avoid confusion; kept for backward compat.
# #endregion Tooling.BuildOfflineDockerBundle
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "${SCRIPT_DIR}/.." && pwd)"
TAG="${1:-}"
if [[ -z "$TAG" ]]; then
echo "Usage: $0 <tag>"
echo "Delegates to: ./build.sh bundle <tag>"
exit 1
fi
echo "[offline-bundle] Delegating to ./build.sh bundle $TAG..."
exec "${PROJECT_ROOT}/build.sh" bundle "$TAG"