Skip to content

Commit b5fd1cc

Browse files
authored
fix(cli): print diff on apply instead of it's pointer (#200)
1 parent 9fbdfe7 commit b5fd1cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/tanka/workflow.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func Apply(baseDir string, mods ...Modifier) error {
3434
tmp := "Warning: There are no differences. Your apply may not do anything at all."
3535
diff = &tmp
3636
}
37-
fmt.Println(diff)
37+
fmt.Println(*diff)
3838

3939
return kube.Apply(p.Resources, opts.apply)
4040
}

0 commit comments

Comments
 (0)