简体   繁体   中英

Unable to save sass (.scss) files on atom mac

I have been trying to use sass files but whenever I try to save the file I get the error

Command failed: sass "/Users/bechara/Desktop/<path of the file>/test.scss" "/Users/bechara/Desktop/<path of the file>/test.css"
Errno::EROFS: Read-only file system @ dir_s_mkdir - ./.sass-cache
  Use --trace for backtrace.

I have the latest build of node.js installed and tried installing node-sass with npm.
The packages I tried on atom are "build-sass", "atom-sass", "sass", and "sass-autocompile".

I am on macOS Catalina 10.15.4

How can I fix the issue?

Can be addressed by modifying your sass_options in your config.rb file to specify a writable cache location.

sass_options = { :cache_location => '/tmp/sass_cache' }

See this answer to Codekit file permission issues (Read-only file system @ dir_s_mkdir - /.sass-cache) .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM