-
-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also check for failures when looking for meteor 1.8.2
- Loading branch information
Showing
1 changed file
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|