We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f29239a commit aca2800Copy full SHA for aca2800
crates/chat-cli/src/cli/chat/tools/use_aws.rs
@@ -51,6 +51,7 @@ impl UseAws {
51
52
pub async fn invoke(&self, _ctx: &Context, _updates: impl Write) -> Result<InvokeOutput> {
53
let mut command = tokio::process::Command::new("aws");
54
+ command.envs(std::env::vars());
55
56
// Set up environment variables
57
let mut env_vars: std::collections::HashMap<String, String> = std::env::vars().collect();
0 commit comments