Files
vendoo/extensions/safari/build-safari-extension.command
Masterluke77andGitHub 6f48827f4d Vendoo 1.41.2 – Git Ignore Boundary & Module Tracking Hotfix (#18)
* docs: prepare Vendoo 1.41.2 git-ignore boundary hotfix

* fix: track native source modules with root-anchored runtime ignores
2026-07-09 17:09:00 +02:00

17 lines
439 B
Bash

#!/bin/zsh
set -e
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
if ! command -v xcrun >/dev/null 2>&1; then
echo "Xcode Command Line Tools fehlen. Bitte Xcode installieren."
read -k 1
exit 1
fi
OUT="$SCRIPT_DIR/build"
mkdir -p "$OUT"
xcrun safari-web-extension-converter "$SCRIPT_DIR/web-extension" \
--project-location "$OUT" \
--app-name "Vendoo Link" \
--bundle-identifier "local.vendoo.link" \
--copy-resources
open "$OUT"