From e2c0c75b1bbcb1aae49e0651bc1474b184335fc6 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Tue, 14 May 2019 13:19:38 -0500 Subject: [PATCH] makefile: Fix local install on sshfs --- build/makefile_base.mak | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/makefile_base.mak b/build/makefile_base.mak index c4ea8128..6d618e3e 100644 --- a/build/makefile_base.mak +++ b/build/makefile_base.mak @@ -386,7 +386,7 @@ deploy: dist | $(filter-out dist deploy install,$(MAKECMDGOALS)) install: dist | $(filter-out dist deploy install,$(MAKECMDGOALS)) if [ ! -d $(STEAM_DIR) ]; then echo >&2 "!! "$(STEAM_DIR)" does not exist, cannot install"; return 1; fi mkdir -p $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) - cp -a $(DST_BASE)/* $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) + cp -r $(DST_BASE)/* $(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) @echo "Installed Proton to "$(STEAM_DIR)/compatibilitytools.d/$(BUILD_NAME) @echo "You may need to restart Steam to select this tool"