-
Notifications
You must be signed in to change notification settings - Fork 587
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
FCS simplification. #773
FCS simplification. #773
Conversation
This reverts commit c77318d. Conflicts: RELEASE_NOTES.md
Please tell me if I should remove the bootstrap step (commit). Added it as a verification that the error is gone (not only on my development machine). It can probably be left there as kind of integration test. |
Actually I like that 2015-04-27 17:50 GMT+02:00 matthid [email protected]:
|
Great to hear! |
can you please fix the appveyor? |
Thanks, didn't noticed... What's actually the problem there? looks like everything worked... I have no clue :( |
Try to push an empty commit to rerun. Maybe it's just a hiccup.
|
I thought that as well but all commits seem to have this. I'll try it anyway... |
Could it be that the AppVeyor build fails when we write something to stderr? |
yep that might be true. 2015-04-28 13:09 GMT+02:00 matthid [email protected]:
|
That's sad, another option would be to redirect the error stream globally (and print red messages instead to stdout) or at least in Currently we write warnings of "build.fsx" at the top, do you mind having them on the bottom? |
Actually I don't think we should change that. Question is why do we write
|
Because FSI writes the warnings and errors to stderr... (I redirected the fsi stderr to the global stderr). |
Ok it's still failing so AppVeyor seems to dislike something else ... |
I think the correct fix is adding |
Ok I think this is the correct thing to do and it works now.
If you want this we need to use Personally I feel like writing some things like warnings to stderr without failing the build is fine. (other tools use this as well to have a "nice" stdout output, that doesn't change on new versions with new warnings, like deprecation) |
thanks. |
it's released. Thanks it seems to work. Good job. |
I'm just hoping to not break everything again (Again, sorry for that). That feeling when you just broke FAKE ... |
Good to hear that its working :) |
Nice! |
Continuation of #771.
Hm, after fixing the Stackoverflow I noticed that we can not really forward the script output anyway (because we would loose coloring)
This PR changes the following:
NOTE: This is a new feature, now we can see compiler warnings from build scripts.
Actually I was always wondering why FAKE would not show them.