feat: Add GOOSE_TERMINAL env variable to spawned terminals (#3911)

Signed-off-by: iamrajiv <rajivperfect007@gmail.com>
This commit is contained in:
Rajiv Singh
2025-08-11 11:38:45 +05:30
committed by GitHub
parent e130c3a7fd
commit ab0b078314
5 changed files with 7 additions and 0 deletions
+1
View File
@@ -26,6 +26,7 @@ pub fn update(canary: bool, reconfigure: bool) -> Result<()> {
.arg(shell_str)
.env("CANARY", canary.to_string())
.env("CONFIGURE", reconfigure.to_string())
.env("GOOSE_TERMINAL", "1")
.spawn()?;
update.wait_with_output()?;