From c4c41b9dce6df55d337409e32c74d8531e34df33 Mon Sep 17 00:00:00 2001 From: Brad Culwell Date: Mon, 4 Mar 2024 05:20:38 -0600 Subject: [PATCH] Update makefile --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index eed6674..26c5a63 100644 --- a/makefile +++ b/makefile @@ -6,9 +6,9 @@ VERSION := $(shell sed -nE 's/^version\s?=\s?"(.*)"/\1/p' Cargo.toml) none: @echo 'Explictly select "release" option' -release: win linux +release: linux @mkdir -p "release/$(VERSION)" - cp "target/$(WINDOWS_TARGET)/release/nyaa.exe" "release/$(VERSION)/nyaa-$(VERSION)-$(WINDOWS_TARGET).exe" + # cp "target/$(WINDOWS_TARGET)/release/nyaa.exe" "release/$(VERSION)/nyaa-$(VERSION)-$(WINDOWS_TARGET).exe" cp "target/$(LINUX_TARGET)/release/nyaa" "release/$(VERSION)/nyaa-$(VERSION)-$(LINUX_TARGET)" @echo "\nCommits since last tag:" @git log $(shell git describe --tags --abbrev=0)..HEAD --oneline