From 517d9edf1ac0623d4192b47a6251bcda889b2a5b 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 d93f89b9..e80e1278 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ STEAM_DIR := $(HOME)/.steam/root BUILD_DIR := $(_build_name) 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