From a2bd15bf9cd3627e7505098c1772cddecb6dfc21 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Sat, 17 Jan 2026 11:23:05 -0600 Subject: [PATCH] Docs build-docc Summary: - Docs: build-docc Stats: - 1 file changed, 18 deletions(-) --- Documentation/build-docc.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 Documentation/build-docc.sh diff --git a/Documentation/build-docc.sh b/Documentation/build-docc.sh deleted file mode 100644 index fbf6e27..0000000 --- a/Documentation/build-docc.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/env bash -set -euo pipefail - -ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" - -cd "$ROOT_DIR" - -xcodebuild docbuild \ - -workspace .swiftpm/xcode/package.xcworkspace \ - -scheme LocalData \ - -destination 'generic/platform=iOS' - -ARCHIVE_PATH="$(find "${HOME}/Library/Developer/Xcode/DerivedData" -type d -name 'LocalData.doccarchive' 2>/dev/null | sort | tail -n 1)" -if [[ -n "${ARCHIVE_PATH}" ]]; then - echo "DocC archive: ${ARCHIVE_PATH}" -else - echo "DocC archive not found in DerivedData." -fi