Skip to content

Commit

Permalink
Symlink .meteor dir to ${HOME}/meteor.
Browse files Browse the repository at this point in the history
  • Loading branch information
realyze committed Jan 22, 2016
1 parent d72a4fe commit 12d3657
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions bin/compile_meteor
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ fetch_meteor() {
head "Unpacking Meteor $METEOR_VERSION"
tar -xzf "$PACKAGE" -C "$BUILD_DIR"
mv "$BUILD_DIR/.meteor" "$METEOR_HOME"
ln -s "${METEOR_HOME}" "${HOME}/.meteor"
# bomb out if it didn't work, eg no net
[ ! -x "${METEOR_HOME}/meteor" ] && error "Install failed: No meteor bin found."
info "Meteor $METEOR_VERSION is installed"
Expand Down

3 comments on commit 12d3657

@SoxFace
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @realyze, thanks for adding this. Can you help explain a little more on how I can add that line to /bin/compile_meteor? Cheers

@realyze
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @SoxFace sorry for the delay. You could fork the original repository, edit that file, add the line and then go to heroku settings tab for your app and add the fork URL to the buildpacks section. Does that make sense?

@SoxFace
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @realyze,

That makes perfect sense, thanks so much for taking the time to respond and for sharing this buildpack.

Much appreciated.

Cheers
Sonya

Please sign in to comment.