-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: Could not find Sass file at 'C:\...\*.scss'. Migration failed! #190
Comments
When running it from Chocolatey, does Dart's |
Actually, wait. The Chocolatey version is out of date (we haven't been able to publish new versions of it for a while). Can you try with the standalone release? |
Yes -- standalone release worked via windows cmd (second one) with:
Thanks much |
btw, the only thing i've ever needed chocolatey for is to install ruby so i could use a gem to get an .npmrc into a travis-ci secret. I can't imagine it's a huge loss :) |
After installing sass-migrator via Chocolatey on windows 10, bypassing the bat filename error (#181) by running:
PS c:\my_code_dir>
dir -recurse -include *.scss | %{c:\programdata\chocolatey\lib\sass-migrator\tools\sass-migrator.bat division ($_.FullName.substring(0, $_.FullName.length - $_.Name.length)+"*.scss")}
I get:
Tried pointing directly at the file, or just pointing to the directory, or leaving the wildcard+extension absent, a la:
PS c:\my_code_dir>
dir -recurse -include *.scss | %{c:\programdata\chocolatey\lib\sass-migrator\tools\sass-migrator.bat division $_.FullName}
PS c:\my_code_dir>
dir -recurse -include *.scss | %{c:\programdata\chocolatey\lib\sass-migrator\tools\sass-migrator.bat division $_.FullName.substring(0, $_.FullName.length - $_.Name.length)}
PS c:\my_code_dir>
dir -recurse -include *.scss | %{c:\programdata\chocolatey\lib\sass-migrator\tools\sass-migrator.bat division ($_.FullName.substring(0, $_.FullName.length - $_.Name.length)+"*")}
but same error.
The text was updated successfully, but these errors were encountered: