Skip to content
This repository has been archived by the owner on Dec 19, 2023. It is now read-only.

Commit

Permalink
Fix args not passed in makefile
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Nov 29, 2023
1 parent 1e29723 commit 053cab0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ all: $(TARGET)

$(TARGET):
ifeq ($(OS),Windows_NT)
./scripts/Build.ps1
./scripts/Build.ps1 $(BIN_STACK) $(BIN_TARGET)
else
./scripts/Build.sh
./scripts/Build.sh $(BIN_STACK) $(BIN_TARGET)
endif
$(CP) "$(BIN_TARGET)" "$(MARVIN_TARGET)"

Expand Down

0 comments on commit 053cab0

Please sign in to comment.