Skip to content

Commit

Permalink
fix(Makefile): lazyload some of vars
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS committed Jan 9, 2016
1 parent 227971f commit 2173f26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
SHELL := /bin/bash
THIS_FILE := $(lastword $(MAKEFILE_LIST))
PKG_NAME := $(shell cat package.json | ./node_modules/.bin/json name)
PKG_VERSION := $(shell npm show $(PKG_NAME) version)
NPM_PROXY := http://$(shell docker-machine ip dev):4873
PKG_NAME = $(shell cat package.json | ./node_modules/.bin/json name)
PKG_VERSION = $(shell npm show $(PKG_NAME) version)
NPM_PROXY = http://$(shell docker-machine ip dev):4873
DOCKER_USER := makeomatic
DIST := $(DOCKER_USER)/$(PKG_NAME)
NODE_VERSIONS := 5.4.0
Expand Down

0 comments on commit 2173f26

Please sign in to comment.