Add message asserting skip. Also return pointer to allow to edit Options

This commit is contained in:
Ettore Di Giacinto
2020-01-05 16:26:42 +01:00
parent d23e1dee78
commit d2abaa9cc1
3 changed files with 6 additions and 3 deletions

View File

@@ -50,8 +50,8 @@ type CompilerOptions struct {
Clean bool
}
func NewDefaultCompilerOptions() CompilerOptions {
return CompilerOptions{
func NewDefaultCompilerOptions() *CompilerOptions {
return &CompilerOptions{
ImageRepository: "luet/cache",
PullFirst: true,
CompressionType: None,