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
This commit is contained in:
Peter Steinberger 2025-07-15 19:22:50 +02:00
parent 5579844425
commit 8543d4b1e1
2 changed files with 1 additions and 1 deletions

View file

@ -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