(historyFile string)
| 179 | } |
| 180 | |
| 181 | func WithHistoryFile(historyFile string) ShellOption { |
| 182 | return func(s *DevboxShell) { |
| 183 | s.historyFile = historyFile |
| 184 | } |
| 185 | } |
| 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 { |