2

我正在尝试使用 GitHub 的 octopress 来托管一些 html 文件。一切都很好,直到rake generate生成公共文件夹的命令,如 Octopress 文档中所述。但是,当我执行rake watch命令时,它显示以下内容并且在这些行之后什么也不做。我已经停止它并重新安装了所有东西,但它的工作原理相同。有任何想法吗?

Starting to watch source with Jekyll and Compass.
Configuration from /home/blackknight/octopress/_config.yml
Auto-regenerating enabled: source -> public
[2013-10-19 15:41:24] regeneration: 94 files changed
Change detected at 15:41:24 to: screen.scss
identical public/stylesheets/screen.css 

Dear developers making use of FSSM in your projects,
FSSM is essentially dead at this point. Further development will
be taking place in the new shared guard/listen project. Please
let us know if you need help transitioning! ^_^b
- Travis Tilley

Compass is polling for changes. Press Ctrl-C to Stop.
4

1 回答 1

1

您的rake watch命令完全按照您的要求执行:查看源文件的更改并在必要时重新生成它们。尽管看起来 Compass 正在做一些你应该等待的事情,但它真的在等待你做一些事情!尝试编辑博客文章或布局并保存更改,您应该会看到如下内容:

[2013-12-18 00:20:18] regeneration: 1 files changed

还要记住,该rake preview命令也将包含最后一行,Compass is polling for changes. Press Ctrl-C to Stop.但您的预览服务器将运行,并且您的站点可以在http://localhost:4000http://localhost:4000/ProjectName如果您正在使用 Github 项目页面查看

于 2013-12-18T07:37:17.523 回答