Currently trying to something like ```ts const env = { GIT_AUTHOR_NAME: "First Last", GIT_AUTHOR_EMAIL: "test@company.com", }; client.commands.run("git add --all", { env }) ``` fails with ``` env: ‘Last’: No such file or directory ``` To make this work you need to escape the environment variable value manually. ```ts const env = { GIT_AUTHOR_NAME: `"First Last"`, GIT_AUTHOR_EMAIL: `"test@company.com"`, }; ``` This shouldn't be needed and should be correctly handled by the SDK.