Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Finally got around to investigating #50 and found out that there's a (Windows-specific) bit of functionality in Python's
Popen
constructor to suppress the console window. Not entirely sure why this wasn't an issue with the 0.18 version - wasshell=True
used before, perhaps? According to https://docs.python.org/3.3/library/subprocess.html#subprocess.STARTUPINFO, passingshell=True
will implicitly causeSW_HIDE
to be set (but usingshell=True
is "strongly discouraged" for security reasons, so it's better to configurestartupinfo
explicitly).This change solves the issue for me on Windows (and seems to make running
elm make
a little bit faster, as a bonus). I don't currently have a Mac or Linux machine, so this has not yet been tested to make sure that it doesn't cause problems on other OSes (theif os.name == 'nt'
should take care of that, but I may have messed something up).