我正在尝试在 Sublime Text 2 中设置 .scss 文件的自动构建。我不断收到错误消息[Error 2] The system cannot find the file specified
。我已经尝试了几种配置,但我就是不明白。
在我当前的项目中,结构如下:
- 2014
- sites
- all
- themes
- 2014sub_theme
- sass
- css
我已经建立了一个项目,并且在我的 .sublime-project 文件中拥有(完整的文件内容):
{
"folders":
[
{
"path": "sites/2014"
}
],
"build_systems":
[
{
"name": "SASS-Custom",
"cmd": [
"sass",
"--watch",
"sass:css"
],
"working_dir": "$project_path/sites/2014/sites/all/themes/2014sub_theme"
}
]
}
当我保存时,我收到以下错误:
[Error 2] The system cannot find the file specified
[cmd: [u'sass', u'--watch', u'sass:css']]
[dir: C:\wamp\www\sites\2014\sites\all\themes\2014sub_theme]
[path: __path stuff removed__]
[Finished]
毫无疑问,该sass
文件夹位于C:\wamp\www\sites\2014\sites\all\themes\2014sub_theme\sass
并且css
位于C:\wamp\www\sites\2014\sites\all\themes\2014sub_theme\css
.
从 cmd.exe,我这样做:
cd C:\wamp\www\sites\2014\sites\all\themes\2014sub_theme
sass --watch sass:css
它工作得很好,任何更改都会sass/global.scss
立即编译为css/global.css
我正在使用 SublimeOnSaveBuild。