We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5730e2e commit 7663b78Copy full SHA for 7663b78
cli/compile/compile.go
@@ -327,12 +327,15 @@ func runCompileCommand(cmd *cobra.Command, args []string) {
327
}
328
329
330
- feedback.PrintResult(&compileResult{
331
- CompileOut: compileStdOut.String(),
332
- CompileErr: compileStdErr.String(),
333
- BuilderResult: compileRes,
334
- Success: compileError == nil,
335
- })
+ if !showProperties {
+ feedback.PrintResult(&compileResult{
+ CompileOut: compileStdOut.String(),
+ CompileErr: compileStdErr.String(),
+ BuilderResult: compileRes,
+ Success: compileError == nil,
336
+ })
337
+ }
338
+
339
if compileError != nil {
340
feedback.Errorf(tr("Error during build: %v"), compileError)
341
0 commit comments