From 0190c2db0556a6f497d7b6cebcc7ee4e2e073610 Mon Sep 17 00:00:00 2001 From: zhouhao Date: Wed, 6 Sep 2017 11:09:58 +0800 Subject: [PATCH] validate: add '\n' Signed-off-by: zhouhao --- schema/validator.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/schema/validator.go b/schema/validator.go index b859934aa..e9f6d4378 100644 --- a/schema/validator.go +++ b/schema/validator.go @@ -217,8 +217,8 @@ func checkPlatform(OS string, Architecture string) { return } } - fmt.Printf("warning: combination of %q and %q is invalid.", OS, Architecture) + fmt.Printf("warning: combination of %q and %q is invalid.\n", OS, Architecture) } } - fmt.Printf("warning: operating system %q of the bundle is not supported yet.", OS) + fmt.Printf("warning: operating system %q of the bundle is not supported yet.\n", OS) }