Skip to content

Commit

Permalink
add version to bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
logicplace committed Sep 26, 2022
1 parent 3b8c1fc commit 46f6487
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,14 @@ tPMAS := pmas.exe
tPMDIS := pmdis.exe
tPARSEMINDX := parsemindx.exe
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
BUNDLE := releases/pmas-windows-x64.zip
BUNDLE := releases/pmas-$(PMAS_VERSION)-windows-x64.zip
else
BUNDLE := releases/pmas-windows-x86.zip
BUNDLE := releases/pmas-$(PMAS_VERSION)-windows-x86.zip
endif
else
tPMAS := pmas
tPMDIS := pmdis
tPARSEMINDX := parsemindx
ifeq ($(PROCESSOR_ARCHITECTURE),AMD64)
BUNDLE := releases/pmas-windows-x64.zip
else
BUNDLE := releases/pmas-windows-x86.zip
endif
UNAME_S := $(shell uname -s)
UNAME_P := $(shell uname -p)
ifeq ($(UNAME_S),Darwin)
Expand All @@ -82,9 +77,9 @@ else
OS := linux
endif
ifeq ($(UNAME_P),x86_64)
BUNDLE := releases/pmas-$(OS)-x64.tar.gz
BUNDLE := releases/pmas-$(PMAS_VERSION)-$(OS)-x64.tar.gz
else
BUNDLE := releases/pmas-$(OS)-x86.tar.gz
BUNDLE := releases/pmas-$(PMAS_VERSION)-$(OS)-x86.tar.gz
endif
endif

Expand Down

0 comments on commit 46f6487

Please sign in to comment.