From 7b98957f6355ee6c568aa54fb43dfdfe8f478e59 Mon Sep 17 00:00:00 2001 From: wi11-holdsworth <83637728+wi11-holdsworth@users.noreply.github.com> Date: Thu, 25 Sep 2025 11:15:21 +1000 Subject: [PATCH] build: build artifacts not being placed in build directory --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index de9fbad..d0b0bdf 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,7 @@ default: # build musician build: mkdir -p {{target}} - ghc -O2 -o {{target}}/{{exec}} *.hs + ghc -O2 -odir {{target}} -hidir {{target}} -o {{target}}/{{exec}} *.hs # run musician run: