From 5f2fd8fb54557ba96dae0f650ed6d7732877b9f1 Mon Sep 17 00:00:00 2001 From: GBA bot Date: Sat, 1 Jan 2022 22:11:01 +0000 Subject: [PATCH] Check if all gba.ld and gba_mb.ld files are the same --- .github/workflows/linker-script.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linker-script.yml b/.github/workflows/linker-script.yml index 4ede0ef9..0cef944a 100644 --- a/.github/workflows/linker-script.yml +++ b/.github/workflows/linker-script.yml @@ -9,6 +9,6 @@ jobs: - name: Check out repository uses: actions/checkout@v2 - name: Check if gba.ld files are identical - run: cmp --silent -- "agb/gba.ld" "template/gba.ld" + run: find -type f -name gba.ld -print0 | xargs -0 -n1 cmp -- agb/gba.ld - name: Check if gba_mb.ld files are identical - run: cmp --silent -- "agb/gba_mb.ld" "template/gba_mb.ld" + run: find -type f -name gba_mb.ld -print0 | xargs -0 -n1 cmp -- agb/gba_mb.ld