Skip to content

Instantly share code, notes, and snippets.

@jethroo
Created April 27, 2016 08:22
Show Gist options
  • Select an option

  • Save jethroo/bf0bf1ecc38e3cd8b21d4fa47e186956 to your computer and use it in GitHub Desktop.

Select an option

Save jethroo/bf0bf1ecc38e3cd8b21d4fa47e186956 to your computer and use it in GitHub Desktop.
#!/bin/sh
for file in $(find ./app/assets/stylesheets/ -name "*.css.scss")
do
git mv $file `echo $file | sed s/\.css//`
done
@jethroo

jethroo commented Apr 27, 2016

Copy link
Copy Markdown
Author

removing:

DEPRECATION WARNING: Extra .css in SCSS file is unnecessary. Rename <stylesheet>.css.scss to <stylesheet>.scss. 

by renaming the files.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment