Fix: Do not return full env map after downloading releases#817
Merged
StrongMonkey merged 1 commit intogptscript-ai:mainfrom Aug 23, 2024
Merged
Fix: Do not return full env map after downloading releases#817StrongMonkey merged 1 commit intogptscript-ai:mainfrom
StrongMonkey merged 1 commit intogptscript-ai:mainfrom
Conversation
Signed-off-by: Daishan Peng <daishan@acorn.io>
56b286b to
979908c
Compare
iwilltry42
approved these changes
Aug 23, 2024
Contributor
iwilltry42
left a comment
There was a problem hiding this comment.
The go runtime is the only one even implementing the Binary() interface func, so I guess we could completely remove the env param, couldn't we?
Especially given your argument, that it doesn't make sense 😁
Contributor
Author
|
yes, I don't actually want to change too much scope just in case though. |
g-linville
approved these changes
Aug 23, 2024
Contributor
|
You dont think we're passing down anything else useful in these env vars? |
thedadams
approved these changes
Aug 23, 2024
Contributor
Author
I looked at other code and the only thing we are doing is to pass PATH environment so that the binary we built is baked into the PATH. Which i don't think we needed for downloading releases. So I think this change should be good and darren did not include this intentionally. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
After downloading gptscript release, we return a full map of current environment variables and this will eventuall get saved in to done.file, which will be picked up and saved as environment variable on the next run. This is causing weird issues like gptscript-ai/desktop#253. The original purpose of adding env variable to done.file is probably related to only append PATH, as we can see the logic here:
gptscript/pkg/repos/runtimes/golang/golang.go
Line 276 in 56b286b