Makefile: Don't consider proton-sdk tags for build name

This commit is contained in:
Andrew Eikum 2021-06-02 10:24:56 -05:00
parent c6fa32fcff
commit 517d9edf1a

View File

@ -17,7 +17,7 @@ STEAM_DIR := $(HOME)/.steam/root
BUILD_DIR := $(_build_name) BUILD_DIR := $(_build_name)
ifeq ($(build_name),) ifeq ($(build_name),)
DEPLOY_DIR := $(shell git describe --tags --always) DEPLOY_DIR := $(shell git describe --tags --always --exclude proton-sdk*)
else else
DEPLOY_DIR := $(_build_name) DEPLOY_DIR := $(_build_name)
endif endif