Skip to content

Commit

Permalink
Also check for failures when looking for meteor 1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
zenhack committed Jul 5, 2020
1 parent 1325370 commit 6b9d50f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,10 @@ tmp/.shell-env: tmp/.ekam-run $(IMAGES) shell/imports/client/changelog.html shel
# a broken font file (all icons invisible and zero-width). For now we stick with the old version
# and run it using Meteor 1.8.2's node which is old enough to run it. This means you have to
# install Meteor 1.8.2 in addition to the latest version in order to build Sandstorm. :(
METEOR_DEV_BUNDLE_ICONS=$(shell ./find-meteor-dev-bundle.sh [email protected])
METEOR_DEV_BUNDLE_ICONS:=$(shell ./find-meteor-dev-bundle.sh [email protected])
ifneq '$(.SHELLSTATUS)' '0'
$(error Failed to find meteor dev bundle; have you installed Meteor?)
endif

icons/node_modules: icons/package.json
cd icons && PATH=$(METEOR_DEV_BUNDLE_ICONS)/bin:$$PATH $(METEOR_DEV_BUNDLE_ICONS)/bin/npm install
Expand Down

0 comments on commit 6b9d50f

Please sign in to comment.