-
Notifications
You must be signed in to change notification settings - Fork 31
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
Call sass with --trace #150
base: main
Are you sure you want to change the base?
Conversation
A related question: if |
It would probably make sense to abort the startup. Not sure whether sass actually exists with a non-zero return code here. |
With the trace option we were able to find out the problem. The latest bootstrap css seems to use features that ruby sass isn't prepared for. See https://progress.opensuse.org/issues/162311#note-21 ff. |
Thanks. Don't think we can merge anything before our CI setup is fixed unfortunately. |
Rebase on main. |
Sometimes there are errors like this: TypeError: String can't be coerced into Integer Use --trace for backtrace. The input is not logged, and not even the line number & file.
Rebased |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems reasonable.
Summary
Call
sass
with the--trace
option to get a backtrace in case of an error.Motivation
Sometimes there are errors like this:
The input is not logged, and not even the line number & file. Hard to debug when the error is not easily reproducible.
References