0
我試圖創建CMD(的NodeJS)的insallter我收到以下錯誤錯誤:ENOENT,改名 'somelocation appshell.gyp.txt'
錯誤:ENOENT,改名「somelocation \ appshell .gyp.txt
只是執行grunt install --force
後爲什麼?
我試圖創建CMD(的NodeJS)的insallter我收到以下錯誤錯誤:ENOENT,改名 'somelocation appshell.gyp.txt'
錯誤:ENOENT,改名「somelocation \ appshell .gyp.txt
只是執行grunt install --force
後爲什麼?
ENOENT可能表示您沒有權限讀取/寫入文件/目錄。
或者文件/目錄根本不存在。 (檢查你的路徑)
嗨,謝謝我明白了。但你能幫助我嗎?這是我當前的命令spawn([「cmd.exe/c ant.bat -f brackets-win-install-build.xml」],{cwd:resolve(「installer/win」),env:getBracketsEnv()})其中我的grunt shell無法找到cmd.exe。當我給cmd.exe的完整路徑它爲我工作。但這不是通用的解決方案,你可以幫助我。 Grunt shell如何自動獲得完整路徑.....非常感謝高級版本。 –
使用'child_process.exec'執行cmd.exe命令。 'exec'已經在cmd中,所以在它後面輸入你的東西。 並使用排名系統接受/評分答案。 – moka