-
Notifications
You must be signed in to change notification settings - Fork 29
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
msi: fix wrong env path for Fluent Package Prompt #606
msi: fix wrong env path for Fluent Package Prompt #606
Conversation
I will check the behavior with the package built on the CI. |
NOTE: Additionally, diff --git a/fluent-package/msi/assets/fluent-package-prompt.bat b/fluent-package/msi/assets/fluent-package-prompt.bat
index 96ec212..077877e 100644
--- a/fluent-package/msi/assets/fluent-package-prompt.bat
+++ b/fluent-package/msi/assets/fluent-package-prompt.bat
@@ -1,4 +1,4 @@
@echo off
-set "PATH=%~dp0\bin;%PATH%"
+set "PATH=%~dp0bin;%PATH%"
set "PATH=%~dp0;%PATH%"
title Fluent Package Command Prompt
--
2.43.0 |
Thanks! I see! I will add it. |
I will fix this in another PR after this PR is merged because this is not related to #605. |
I have confirmed the msi package works correctly. |
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.
The fixed content itself is reasonable, but it lacks the reason "why".
- PATH was set to "c:\opt\fluent";"c:\opt\fluent\bin";...
- There is a case that some tool can't spawn td-agent-gem correctly when PATH contains quoted literals...
- In this commit...
Could you amend commit message?
* fix fluent#605 * The current PATH includes `"`. It is unintended and causes some bugs. For example, fluent-diagtool does not work correctly because of this. Signed-off-by: Daijiro Fukuda <[email protected]>
dcae05e
to
e6a7403
Compare
Thanks for your review. I have added it. |
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.
LGTM.
"
. It is unintended and causes somebugs. For example, fluent-diagtool does not work correctly
because of this.