diff options
author | n-peugnet <n.peugnet@free.fr> | 2020-05-10 16:55:04 +0200 |
---|---|---|
committer | n-peugnet <n.peugnet@free.fr> | 2020-05-11 16:10:08 +0200 |
commit | 28fb122f56df0cb034013740dd30aaaf5ce9059e (patch) | |
tree | 172475f93ad5a849ba069fd5ae053dbeeb517448 | |
parent | 2f8105cabf63f3ef3d4a59c306f4e1403d3c5164 (diff) | |
download | wcms-28fb122f56df0cb034013740dd30aaaf5ce9059e.tar.gz wcms-28fb122f56df0cb034013740dd30aaaf5ce9059e.zip |
fix: explicitely set PATH in Makefile for MacOS
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -7,6 +7,7 @@ js_src_dir := src # Misc variables. PATH := vendor/bin:node_modules/.bin:$(PATH) +SHELL := PATH=$(PATH) /bin/bash override GIT_VERSION := $(shell git --no-pager describe --always --tags) override CUR_VERSION := $(strip $(shell cat VERSION 2>/dev/null)) override WEBPACK_FLAGS += $(if $(filter $(ENV),dist),-p) |