Skip to content

feat(agent): add devcontainer autostart support #17076

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Mar 27, 2025
Prev Previous commit
Next Next commit
Update agent/agentcontainers/devcontainer.go
Co-authored-by: Danielle Maywood <danielle@themaywoods.com>
  • Loading branch information
mafredri and DanielleMaywood authored Mar 27, 2025
commit 4676898fffc115e8b454376579a3394a7f5c49f5
2 changes: 1 addition & 1 deletion agent/agentcontainers/devcontainer.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func expandDevcontainerPaths(logger slog.Logger, expandPath func(string) (string
}
if dc.ConfigPath != "" {
// Let expandPath handle home directory, otherwise assume relative to
// workspace folder or absoulte.
// workspace folder or absolute.
if dc.ConfigPath[0] == '~' {
if cp, err := expandPath(dc.ConfigPath); err != nil {
logger.Warn(context.Background(), "expand devcontainer config path failed", slog.Error(err))
Expand Down
Loading