This commit is contained in:
2023-10-12 18:08:43 +08:00
parent 936aa5906f
commit 27f7d97168
2 changed files with 4 additions and 4 deletions

View File

@@ -48,10 +48,10 @@ ReleaseDebs = $(ReleaseDir)/debs/$(PLATFORM)
CrontaskSize = 27788951
RestagentSize = 29525312
BinWriterDir = $(HOME)/bin
ifeq ($(shell cat |grep VERSION_ID /etc/os-release), VERSION_ID="22.04")
ifeq ($(shell grep VERSION_ID /etc/os-release), VERSION_ID="22.04")
DebBuildDir := $(DebBuild2204Dir)
DebPkgFile := $(PROJECT)-$(VERSION)-22.04-$(Release).$(PLATFORM).deb
else ifeq ($(shell cat |grep VERSION_ID /etc/os-release), VERSION_ID="18.04")
else ifeq ($(shell grep VERSION_ID /etc/os-release), VERSION_ID="18.04")
DebPkgFile := $(PROJECT)-$(VERSION)-$(Release).$(PLATFORM).deb
endif