-
Notifications
You must be signed in to change notification settings - Fork 178
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
Fix file paths for exec launcher on Windows #3073
Fix file paths for exec launcher on Windows #3073
Conversation
How to use the Graphite Merge QueueAdd the label graphite-merge to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
de6ec13
to
504d98e
Compare
72e94e8
to
e584ec7
Compare
e584ec7
to
50af30c
Compare
Merge activity
|
50af30c
to
64aaa57
Compare
### Motivation We were using `exec` incorrectly, which was causing an invalid argument error coming from the system. ### Implementation The correct usage of `exec` is to pass each argument separately. ### Automated Tests I added a new launch integration test, which would've surfaced this issue before to us. Additionally, I made some adjustments to existing tests.
64aaa57
to
ed15491
Compare
Motivation
We were using
exec
incorrectly, which was causing an invalid argument error coming from the system.Implementation
The correct usage of
exec
is to pass each argument separately.Automated Tests
I added a new launch integration test, which would've surfaced this issue before to us. Additionally, I made some adjustments to existing tests.