【发布时间】:2016-09-08 06:39:57
【问题描述】:
我正在努力
sass input src.scss test.css
或
sass input src.scss:test.css
Both results in error::
Errno::ENONET:No such file or directory @ rb_sysopen - input
这是我的第一个 scss 到 css 的编译
【问题讨论】:
我正在努力
sass input src.scss test.css
或
sass input src.scss:test.css
Both results in error::
Errno::ENONET:No such file or directory @ rb_sysopen - input
这是我的第一个 scss 到 css 的编译
【问题讨论】:
你需要传递一个真实创建的文件:
# cd my_path_with_file
sass example.scss example.css
或者你可以使用文件的绝对路径:
# output file will be saved in current directory
sass my_path/example.scss example.css
祝你好运。
【讨论】: