chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:33 +08:00
commit fc4fcbab58
1848 changed files with 472303 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/env bash
set -euo pipefail
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
ROOT=$(cd "$SCRIPT_DIR/.." && pwd)
cd "$ROOT"
if [[ -n "${MAC_RELEASE_TOOL:-}" ]]; then
exec "$MAC_RELEASE_TOOL" "$@"
fi
for candidate in \
"$ROOT/../agent-scripts/skills/release-mac-app/scripts/mac-release" \
"$HOME/Projects/agent-scripts/skills/release-mac-app/scripts/mac-release"; do
if [[ -x "$candidate" ]]; then
exec "$candidate" "$@"
fi
done
cat >&2 <<'EOF'
Missing mac-release helper.
Clone agent-scripts next to this repo or set MAC_RELEASE_TOOL=/path/to/mac-release.
EOF
exit 127