From f3490e2cf417c4f2ff40630743ffe286fd2b8fad Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Tue, 19 Jan 2021 14:43:06 -0500 Subject: [PATCH] Quote RACK_USER_DIR in plugin makefile. --- plugin.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin.mk b/plugin.mk index 180e746e..5cad18d3 100644 --- a/plugin.mk +++ b/plugin.mk @@ -77,7 +77,8 @@ endif cd dist && ZSTD_CLEVEL=19 tar -cf "$(SLUG)"-"$(VERSION)"-$(ARCH).vcvplugin --zstd "$(SLUG)" install: dist - cp dist/"$(SLUG)"-"$(VERSION)"-$(ARCH).vcvplugin $(RACK_USER_DIR)/plugins-v2/ + mkdir -p "$(RACK_USER_DIR)"/plugins-v2/ + cp dist/"$(SLUG)"-"$(VERSION)"-$(ARCH).vcvplugin "$(RACK_USER_DIR)"/plugins-v2/ .PHONY: clean dist .DEFAULT_GOAL := all