最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Meteor in Git Shell (mingw) - Stack Overflow

programmeradmin3浏览0评论

I am trying to do the tutorial for Meteor JS but I can't get it to work properly using the Git Shell that es with Github for Windows. It can't find the meteor mand. It works in cmd and it is in the Windows environment path. What am I doing wrong?

I am trying to do the tutorial for Meteor JS but I can't get it to work properly using the Git Shell that es with Github for Windows. It can't find the meteor mand. It works in cmd and it is in the Windows environment path. What am I doing wrong?

Share Improve this question edited Apr 23, 2015 at 23:21 Dan Beaulieu 20k19 gold badges106 silver badges137 bronze badges asked Apr 23, 2015 at 22:52 SeanSean 1,8883 gold badges22 silver badges35 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

To run a *.bat mand from MinGW's MSYS shell, you must redirect the execution to cmd.exe, thus:

cmd //c foo.bat [args ...]

The foo.bat mand file must be in a directory within $PATH, (or you must specify the full path name ... using slashes, not backslashes unless you use two of them for each path name separator). Also, note the double slash to inform cmd.exe that you are using its /C option, (since it doesn't accept the -c form preferred by the MSYS shell.

If you'd like to make the foo.bat file directly executable from the MSYS shell, you may create a two line Bourne shell wrapper script called simply foo alongside it, (in the same directory as foo.bat), thus:

#!/bin/sh
cmd //c "$0.bat" "$@"

(so in your case, you'd create script file meteor alongside meteor.bat).

In fact, since this wrapper script is entirely generic, provided your file system supports hard file links, (as NTFS does for files on one single disk partition), you may create one wrapper script, and link it to as many mand file names as you have *.bat files you'd like to invoke in this manner; (hint: use the MSYS ln mand to link the files).

I am not using windows so I can't tell you the exact path, but you need to search for the path of the 'bin' folder (something like C:...\bin) where meteor is, and then add it to the PATH environment variable.

Or maybe it is better if you just install the windows version of meteor available here: https://win.meteor.

发布评论

评论列表(0)

  1. 暂无评论