Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2022-01-31 20:58:52 +03:00
commit e8e59ce5cc

View File

@ -158,9 +158,13 @@ DATE := $(strip $(shell date "+%Y%m%d%H%M"))
COMMIT := $(strip $(shell git rev-parse HEAD)) COMMIT := $(strip $(shell git rev-parse HEAD))
# do not install stuff unless the eser explicitly asks for it...
NPX := npx --no
# less... # less...
# #
LESSC := npx lessc LESSC := $(NPX) lessc
# Electron... # Electron...
@ -176,9 +180,9 @@ LESSC := npx lessc
# 2) set path and launch a child make -- not sure how to # 2) set path and launch a child make -- not sure how to
# do this... # do this...
# #
ELECTRON := npx electron ELECTRON := $(NPX) electron
ELECTRON_REBUILD := npx electron-rebuild ELECTRON_REBUILD := $(NPX) electron-rebuild
ASAR := npx asar ASAR := $(NPX) asar
ELECTRON_VERSION_FALLBACK ?= v1.8.1 ELECTRON_VERSION_FALLBACK ?= v1.8.1
ELECTRON_VERSION := $(strip $(shell \ ELECTRON_VERSION := $(strip $(shell \
$(ELECTRON) -v 2> /dev/null \ $(ELECTRON) -v 2> /dev/null \