From 22c42cd43d374b69306f2194314ee811a87b2b61 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 7f31109f..93a5fa45 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