我在我的 Mac 上运行 hexo。它工作得很好,直到我想删除hello-world.md
帖子。我按以下顺序删除帖子。
- 删除
hello-world.md
源/_post - 运行
hexo clean
以删除database
(db.json)和assets
文件夹 - 运行
hexo generate
以在没有您删除的帖子的情况下生成新博客,不幸的是,发生了错误。
错误信息是:
/usr/local/lib/node_modules/hexo/node_modules/graceful-fs/polyfills.js:8
cwd = origCwd.call(process)
^
Error: ENOENT: no such file or directory, uv_cwd
at Error (native)
at process.cwd (/usr/local/lib/node_modules/hexo/node_modules/graceful-fs/polyfills.js:8:19)
at entry (/usr/local/lib/node_modules/hexo/node_modules/hexo-cli/lib/hexo.js:14:24)
at Object.<anonymous> (/usr/local/lib/node_modules/hexo/bin/hexo:5:20)
at Module._compile (module.js:413:34)
at Object.Module._extensions..js (module.js:422:10)
at Module.load (module.js:357:32)
at Function.Module._load (module.js:314:12)
at Function.Module.runMain (module.js:447:10)
at startup (node.js:141:18)
at node.js:933:3
那么问题是什么?感谢你的帮助。