You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SET tools_dir=%~dp0
SET root=%tools_dir%..
SET bin=%root%\bin
for %%f in (%bin%\sassc*%PROCESSOR_ARCHITECTURE%.exe) do SET sassc=%%f
SET sassc_input=%root%\scss\style.scss
SET sassc_output=%root%\static\style.css
SET sassc_style=nested
ECHO Building scss ...
%sassc% --style %sassc_style% %sassc_input% %sassc_output% || ECHO ERROR while launching %sassc%. && EXIT /B 1
ECHO Build scss finished.
The text was updated successfully, but these errors were encountered:
aliakseimaniuk
changed the title
Relative path for style.scss lead to "Internal Error: File to read not found or unreadable" error.
Relative path for style.scss leads to "Internal Error: File to read not found or unreadable" error.
Jan 2, 2018
After update from 3.4.1 version to 3.4.7 version, we noticed that sassc.exe for Windows stopped to recognize the relative path to style.scss file.
During build process we receive an error:
Internal Error: File to read not found or unreadable: C:/project/tools/../scss/style.scss
Project structure:
The code from project's build file:
The text was updated successfully, but these errors were encountered: