From 8543d4b1e18a148be2eaee72603fd80ca0fa1d29 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 15 Jul 2025 19:22:50 +0200 Subject: [PATCH] chore: move .github-config to mac/ directory - Move .github-config from project root to mac/ - Update generate-appcast.sh to reference new location - Keeps all Mac-specific configuration together --- .github-config => mac/.github-config | 0 mac/scripts/generate-appcast.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename .github-config => mac/.github-config (100%) diff --git a/.github-config b/mac/.github-config similarity index 100% rename from .github-config rename to mac/.github-config diff --git a/mac/scripts/generate-appcast.sh b/mac/scripts/generate-appcast.sh index 954643c5..43d991b0 100755 --- a/mac/scripts/generate-appcast.sh +++ b/mac/scripts/generate-appcast.sh @@ -19,7 +19,7 @@ export PATH="$HOME/.local/bin:$PATH" # Load GitHub configuration SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -CONFIG_FILE="$(dirname "$SCRIPT_DIR")/.github-config" +CONFIG_FILE="$SCRIPT_DIR/../.github-config" if [ -f "$CONFIG_FILE" ]; then source "$CONFIG_FILE" fi