fix: remove git fetch from build.sh
All checks were successful
Build / build (pull_request) Successful in 5s

This commit is contained in:
Ben Vincent 2025-01-25 18:31:40 +11:00
parent 64c757d03e
commit 28e0a5b0ee

View File

@ -1,7 +1,6 @@
#!/bin/bash
# Check for changes in images/ folder and the builds/ folder
git fetch origin master:master
if [ "$(git branch --show-current)" = "master" ]; then
builds_changes=$(git diff --name-only HEAD^...master | grep -E '^builds/')
images_changes=$(git diff --name-only HEAD^...master | grep -E '^images/')