From edb77b173b1852d8ce36d9741eedbb7cbc5af8d1 Mon Sep 17 00:00:00 2001 From: Andrew Eikum Date: Wed, 2 Jun 2021 10:24:56 -0500 Subject: [PATCH] Makefile: Don't consider proton-sdk tags for build name --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 32f8eb0d..47481dd2 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ BUILD_DIR := "build-$(shell echo $(_build_name) | sed -e 's/ /_/g')" STEAM_DIR := $(HOME)/.steam/root ifeq ($(build_name),) - DEPLOY_DIR := $(shell git describe --tags --always) + DEPLOY_DIR := $(shell git describe --tags --always --exclude proton-sdk*) else DEPLOY_DIR := $(_build_name) endif