我在Mac上运行hexo。它非常有效,直到我想要删除hello-world.md
帖子。我按以下顺序删除帖子。
hello-world.md
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
那么问题是什么?谢谢你的帮助。
答案 0 :(得分:2)
导致此问题的原因是我在hexo generate
文件夹中运行public
,当我运行hexo clean
时,该文件被删除。