From f1548819b8282b2f92039099fbc5965dd1d184b9 Mon Sep 17 00:00:00 2001 From: yusuf Date: Thu, 19 Sep 2024 16:32:46 +0300 Subject: [PATCH] Update the flag name --- cmd/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/scan.go b/cmd/scan.go index 5535aa6..cac741b 100755 --- a/cmd/scan.go +++ b/cmd/scan.go @@ -83,7 +83,7 @@ func init() { scanCmd.Flags().Uint("feature-branch-retention", 0, "Adds a retention(days) to the project for feature branch delete operations [create-project]") scanCmd.Flags().Bool("feature-branch-infinite-retention", false, "Sets an infinite retention for project feature branches. Overrides --feature-branch-retention flag when set to true [create-project]") scanCmd.Flags().String("default-branch", "main", "Sets the default branch for the project. When repo-id is given, this will be overridden by the repository's default branch [create-project].") - scanCmd.Flags().Bool("scope-allow-empty", false, "enable to include SAST, SCA and IAC vulnerabilities with no path in this project.") + scanCmd.Flags().Bool("scope-include-empty", false, "enable to include SAST, SCA and IAC vulnerabilities with no path in this project.") scanCmd.Flags().String("scope-included-paths", "", "a comma separated list of paths within your mono-repo so that Kondukto can decide on the SAST, SCA and IAC vulnerabilities to include in this project.") scanCmd.Flags().String("scope-included-files", "", "a comma separated list of file names Kondukto should check for in vulnerabilities alongside paths")