Skip to content

Commit

Permalink
Add reporter to the list of apps for 'make webapp'
Browse files Browse the repository at this point in the history
  • Loading branch information
darh committed Oct 1, 2021
1 parent 9907a74 commit 90a2f23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webapp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WGET_FLAGS ?= -q
TAR ?= tar
TAR_FLAGS ?= -xzmok
RELEASE_PAGE ?= https://releases.cortezaproject.org/files
APPS ?= admin compose workflow
APPS ?= admin compose workflow reporter
ALL_APPS ?= $(APPS) one
VERSION ?= $(shell git describe --tags --abbrev=0)
PACKAGES = $(addprefix corteza-webapp-,$(addsuffix -$(VERSION).tar.gz,$(ALL_APPS)))
Expand All @@ -22,6 +22,7 @@ install-packages: $(PACKAGES)
@ $(TAR) $(TAR_FLAGS) -f corteza-webapp-admin-$(VERSION).tar.gz -C public/admin
@ $(TAR) $(TAR_FLAGS) -f corteza-webapp-compose-$(VERSION).tar.gz -C public/compose
@ $(TAR) $(TAR_FLAGS) -f corteza-webapp-workflow-$(VERSION).tar.gz -C public/workflow
@ $(TAR) $(TAR_FLAGS) -f corteza-webapp-reporter-$(VERSION).tar.gz -C public/reporter

download: $(PACKAGES)

Expand All @@ -35,6 +36,7 @@ install-fresh: build
@ cp -r $(SOURCE_LOC)admin/dist public/admin
@ cp -r $(SOURCE_LOC)compose/dist public/compose
@ cp -r $(SOURCE_LOC)workflow/dist public/workflow
@ cp -r $(SOURCE_LOC)reporter/dist public/reporter

build: $(SOURCES)

Expand Down

0 comments on commit 90a2f23

Please sign in to comment.