-
Notifications
You must be signed in to change notification settings - Fork 399
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
[#608] Windows fix for <app> console #626
base: master
Are you sure you want to change the base?
Conversation
|
||
& $werl @argv | ||
start-process "$erl" -ArgumentList "$argv" -Wait -NoNewWindow #execute the application in the current shell window |
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.
My impression was that werl
is the only "true" Erlang shell, the command-line version is considerably simpler, missing many of the useful features - has that changed? I would expect someone would want the proper shell when attaching a console in production. Thoughts?
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.
possibly I'm incorrect but I was under the assumption that the two were identical, in the case that they are not, it may be a good idea to have an optional config flag
$argv = @("-boot", $boot) | ||
$argv += @("-config", $Env:SYS_CONFIG_PATH) | ||
$argv += @("-args_file", $Env:VMARGS_PATH) | ||
$argv = @("-boot", "`"$boot`"") |
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.
Just for my own edification, could you explain the changes here? I'm going to merge them, I'd just like to know what I need to be doing differently or how I should be reasoning about quoting here; I'm working with PS Core for the most part, and I know there are differences with previous versions of PS, but from a maintenance standpoint I can't work with both, so Core is what I've stuck with, do these changes make any assumptions in that regard?
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.
so, the difference here is that we wrap the $boot
in quotes so that paths containing a space work as intended, rather than acting as independent args 👍
we also wrap the other args in quotes just in case
a16629d
to
949970a
Compare
Summary of changes
Fixes #608
Modified
console.ps1
to:start-job
callCTRL-C
or other breaking keycodeModified
release_rc_win_exec.eex
to:%boot_script%
Licensing/Copyright
By submitting this PR, you agree to the following statement, please read before submission!
I certify that I own, and have sufficient rights to contribute, all source code and
related material intended to be compiled or integrated with the source code for Distillery
(the "Contribution"). My Contribution is licensed under the MIT License.
NOTE: If you submit a PR and remove the statement above, your PR will be rejected. For your PR to be
considered, it must contain your agreement to license under the MIT license.