From 0e006bd3d5795783be3e4335c35b04cd0a235ae5 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Wed, 12 Apr 2023 15:12:00 +0100 Subject: [PATCH] Update publish justfile command to accept arguments --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 032849cb..4a0b9e7d 100644 --- a/justfile +++ b/justfile @@ -81,7 +81,7 @@ 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 -publish: (_run-tool "publish") +publish *args: (_run-tool "publish" args) release +args: (_run-tool "release" args)