We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2cf194 commit 313e195Copy full SHA for 313e195
1 file changed
pkg/zeaburpack/main.go
@@ -123,9 +123,7 @@ func Build(opt *BuildOptions) error {
123
SupportedIdentifiers(config)...,
124
)
125
126
- t, m := planner.Plan()
127
-
128
- PrintPlanAndMeta(t, m, opt.LogWriter)
+ t, m = planner.Plan()
129
130
dockerfile, err = generateDockerfile(
131
&generateDockerfileOptions{
@@ -139,6 +137,8 @@ func Build(opt *BuildOptions) error {
139
137
}
140
138
141
+ PrintPlanAndMeta(t, m, opt.LogWriter)
+
142
if opt.HandlePlanDetermined != nil {
143
(*opt.HandlePlanDetermined)(t, m)
144
0 commit comments