From 712bc9b92079a1eeab78cdc46aec31bf2ed6e5f9 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Wed, 23 Nov 2022 13:11:50 -0500 Subject: [PATCH] Makefile: Fix DIST_NAME and DIST_SDK quotes. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index c3684d5d..cc3fa288 100644 --- a/Makefile +++ b/Makefile @@ -143,9 +143,9 @@ ifdef ARCH_WIN endif DIST_RES := res cacert.pem Core.json template.vcv LICENSE-GPLv3.txt -DIST_NAME := RackFree-"$(VERSION)"-$(ARCH_NAME) +DIST_NAME := RackFree-$(VERSION)-$(ARCH_NAME) DIST_SDK_DIR := Rack-SDK -DIST_SDK := Rack-SDK-"$(VERSION)"-$(ARCH_NAME).zip +DIST_SDK := Rack-SDK-$(VERSION)-$(ARCH_NAME).zip ifdef ARCH_MAC DIST_BUNDLE := VCV Rack $(VERSION_MAJOR) Free.app else