build: build artifacts not being placed in build directory

This commit is contained in:
wi11-holdsworth 2025-09-25 11:15:21 +10:00
parent 4ecd8803af
commit 7b98957f63

View file

@ -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: