Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions firestartr-bootstrap/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -707,3 +707,14 @@ func (m *FirestartrBootstrap) CmdRunBootstrap(

//m.CmdPushArgo(ctx)
}

func (m *FirestartrBootstrap) CmdDebugBootstrap(
ctx context.Context,
cacheVolume *dagger.CacheVolume,
) *dagger.Container {


return dag.Container().
From("alpine:3.21.3").
WithMountedCache("/debug", cacheVolume)
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new method isn’t gofmt-formatted (extra blank lines and space-indented method chaining). Please run gofmt so indentation matches the rest of this file (tabs + aligned chaining) and to avoid unnecessary diff noise.

Suggested change
return dag.Container().
From("alpine:3.21.3").
WithMountedCache("/debug", cacheVolume)
return dag.Container().
From("alpine:3.21.3").
WithMountedCache("/debug", cacheVolume)

Copilot uses AI. Check for mistakes.
}
Loading