Add justfile command for updating the linker script

This commit is contained in:
Gwilym Kuiper 2022-06-17 00:45:26 +01:00
parent fb8bcbfc0d
commit b4d8f23bfb

View file

@ -50,6 +50,10 @@ build-book:
update-lockfiles:
bash .github/scripts/update-lockfiles.sh
update-linker-scripts:
find -type f -name gba.ld | grep -v ./agb/gba.ld | xargs -n1 cp -v -- agb/gba.ld
find -type f -name gba_mb.ld | grep -v ./agb/gba_mb.ld | xargs -n1 cp -v -- agb/gba_mb.ld
_build-rom folder name:
#!/usr/bin/env bash
set -euxo pipefail