TODO: Consider removing this once plugins add env vars directly to binaries via wrapper scripts.
(envVariables map[string]string)
| 186 | |
| 187 | // TODO: Consider removing this once plugins add env vars directly to binaries via wrapper scripts. |
| 188 | func WithEnvVariables(envVariables map[string]string) ShellOption { |
| 189 | return func(s *DevboxShell) { |
| 190 | s.env = envVariables |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | func WithProjectDir(projectDir string) ShellOption { |
| 195 | return func(s *DevboxShell) { |