Fix publisher name with quotes

This commit is contained in:
Alexey Golubev
2018-10-19 12:45:40 +03:00
parent 8ce7447e2d
commit 30e388522d
2 changed files with 5 additions and 5 deletions

View File

@ -12,14 +12,14 @@ BUILD_NUMBER ?= 0
PUBLISHER_NAME ?= Ascensio System SIA
APP_COPYRIGHT ?= "Copyright (C) $(PUBLISHER_NAME) 2012-$(shell date +%Y). All rights reserved"
APP_COPYRIGHT ?= Copyright (C) $(subst ",\",$(PUBLISHER_NAME)) 2012-$(shell date +%Y). All rights reserved
PUBLISHER_URL ?= "https://www.onlyoffice.com/"
PUBLISHER_URL ?= https://www.onlyoffice.com/
GRUNT_ENV += PRODUCT_VERSION=$(PRODUCT_VERSION)
GRUNT_ENV += BUILD_NUMBER=$(BUILD_NUMBER)
GRUNT_ENV += APP_COPYRIGHT=$(APP_COPYRIGHT)
GRUNT_ENV += PUBLISHER_URL=$(PUBLISHER_URL)
GRUNT_ENV += APP_COPYRIGHT="$(APP_COPYRIGHT)"
GRUNT_ENV += PUBLISHER_URL="$(PUBLISHER_URL)"
WEBAPPS_DIR ?= web-apps