2012-06-14 22 views
0

我刚刚发现了伪造并想立即尝试它。我紧随其后的教程在http://docs.trigger.io/en/v1.3/getting-started.html#mac-and-linux-users,一切都很好,直到我试图实际运行我的应用程序:当试图运行一个新创建的应用程序时,“没有这样的文件或目录”

(forge-environment) forge run web 
[ INFO] Forge tools running at version 3.3.2 
[ INFO] Checking JavaScript files... 
[ INFO] JavaScript check complete 
[ INFO] Verifying your configuration settings... 
[ INFO] Configuration settings check complete 
Exception in thread Thread-3: 
Traceback (most recent call last): 
    File "/usr/lib/python2.7/threading.py", line 551, in __bootstrap_inner 
    self.run() 
    File "/usr/lib/python2.7/threading.py", line 504, in run 
    self.__target(*self.__args, **self.__kwargs) 
    File "/home/mononofu/Programmieren/ArmorCalc/.template/generate_dynamic/utils.py", line  163, in runner 
    state.proc = lib.PopenWithoutNewConsole(args, stdout=subprocess.PIPE,  stderr=subprocess.STDOUT, env=kw.get('env')) 
    File "/home/mononofu/Programmieren/ArmorCalc/.template/generate_dynamic/lib.py", line 155,  in __init__ 
    self._old_popen.__init__(self, *args, **kwargs) 
    File "/usr/lib/python2.7/subprocess.py", line 679, in __init__ 
    errread, errwrite) 
    File "/usr/lib/python2.7/subprocess.py", line 1249, in _execute_child 
    raise child_exception 
OSError: [Errno 2] No such file or directory 

(它实际上并没有崩溃,只是挂起了一会儿,然后用状态131退出) 这无论我如何尝试运行它(android,web)都会发生。我在Ubuntu 12.04上,一切都更新了。我没有改变任何东西从默认,只是create,然后build

任何想法?

+1

你可以使用--verbose标志重新运行失败的命令,并用它更新你的问题,或者联系[email protected]? –

+0

与'--verbose'没有什么区别 - 我想我必须联系支持。 – Mononofu

+0

@JamesBrady是trigger.io团队的成员! –

回答

1

底层的错误是adb没有被发现与模拟器/设备交互:我们已经修复了这个糟糕的错误信息,这样其他的Linux用户就不会被卡住了!

相关问题