Skip to content

Commit

Permalink
define task path with .exe suffix on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Will Murphy <will.murphy@anchore.com>
  • Loading branch information
willmurphyscode committed May 13, 2024
1 parent ee85b15 commit 342e7b0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ PROJECT = binny

TOOL_DIR = .tool
BINNY = $(TOOL_DIR)/binny

ifeq ($(OS),Windows_NT)
TASK = $(TOOL_DIR)/task.exe
else
TASK = $(TOOL_DIR)/task
endif

.DEFAULT_GOAL := make-default

Expand Down

0 comments on commit 342e7b0

Please sign in to comment.