0

あるディレクトリには、"foreman start" と入力すると問題なく動作する CoffeeScript アプリケーションがあります。

別のディレクトリに、そのディレクトリからすべてをコピーし、もう一度「職長開始」と入力しました。しかし、それは実行されません。代わりに、このエラーが発生します。

20:44:39 web.1     | started with pid 90836
20:44:40 web.1     | 
20:44:40 web.1     | node.js:201
20:44:40 web.1     |         throw e; // process.nextTick error, or 'error' event on first tick
20:44:40 web.1     |               ^
20:44:40 web.1     | Error: ENOENT, no such file or directory '/Users/cypher/git/heroku/falling-lightning-4940/node_modules/.bin/package.json'
20:44:40 web.1     |     at Object.openSync (fs.js:230:18)
20:44:40 web.1     |     at Object.readFileSync (fs.js:120:15)
20:44:40 web.1     |     at Object.<anonymous> (/Users/cypher/git/heroku/falling-lightning-4940/node_modules/.bin/nodemon:10:26)
20:44:40 web.1     |     at Module._compile (module.js:432:26)
20:44:40 web.1     |     at Object..js (module.js:450:10)
20:44:40 web.1     |     at Module.load (module.js:351:31)
20:44:40 web.1     |     at Function._load (module.js:310:12)
20:44:40 web.1     |     at Array.0 (module.js:470:10)
20:44:40 web.1     |     at EventEmitter._tickCallback (node.js:192:40)
20:44:40 web.1     | process terminated
20:44:40 system    | sending SIGTERM to all processes

理解できません。2 つのディレクトリはまったく同じである必要があります。これはどのように起こりますか?

4

1 に答える 1

1

この部分が問題を示していると思います。

/Users/cypher/git/heroku/falling-lightning-4940/node_modules/.bin/package.json

ほとんどのコピー方法では、.. .binディレクトリがコピーにない可能性があります。

于 2012-04-18T05:28:02.843 に答える