Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion cmd/cloudshell_open/pack.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
)

func packBuild(dir, image, builderImage string) error {
cmd := exec.Command("pack", "build", "--quiet", "--builder", builderImage, "--path", dir, image)
cmd := exec.Command("pack", "build", "--quiet", "--builder", builderImage, "--path", dir, image, "--publish")
b, err := cmd.CombinedOutput()
if err != nil {
return fmt.Errorf("pack build failed: %v, output:\n%s", err, string(b))
Expand Down
Loading