浏览代码

fix hubtest --no-clean when failure (#1088)

AlteredCoder 3 年之前
父节点
当前提交
4c306187a6
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      cmd/crowdsec-cli/hubtest.go

+ 2 - 2
cmd/crowdsec-cli/hubtest.go

@@ -120,7 +120,7 @@ cscli hubtest create my-scenario-test --parsers crowdsecurity/nginx --scenarios
 				LogFile:       logFileName,
 				LogType:       logType,
 				IgnoreParsers: ignoreParsers,
-				Labels: 	   labels,
+				Labels:        labels,
 			}
 
 			configFilePath := filepath.Join(testPath, "config.yaml")
@@ -255,7 +255,7 @@ cscli hubtest create my-scenario-test --parsers crowdsecurity/nginx --scenarios
 								fmt.Println()
 							}
 						}
-						if !forceClean {
+						if !forceClean && !noClean {
 							prompt := &survey.Confirm{
 								Message: fmt.Sprintf("\nDo you want to remove runtime folder for test '%s'? (default: Yes)", test.Name),
 								Default: true,