0

我有一个要在此目录中运行的文件:

C:\ruby\App\bin\cucumber

我有一个文件,我想在这个目录中传递它:

C:\ruby\App\features\creating_projects.feature

当我明确cd/bin运行文件时,一切正常:

C:\ruby\App>cd bin
C:\ruby\App\bin>cucumber ..\features\creating_projects.feature

但我希望能够在我的应用程序的根目录中运行它。但这不起作用。它说,"bin\cucumber" is not a program, command of file

C:\ruby\App>bin\cucumber features\creating_projects.feature
# error

我怎样才能以这种方式运行文件?

4

2 回答 2

1

你有没有尝试过:

C:\ruby\App>.\bin\cucumber ..\features\creating_projects.feature

?

于 2013-06-27T14:30:29.533 回答
1

我不确定,但也许你应该添加文件扩展名

C:\ruby\App>bin\cucumber.??? features\creating_projects.feature

于 2013-06-27T14:32:57.710 回答