You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: analysis/analysers/importers/CoverageImporter/src/main/kotlin/de/maibornwolff/codecharta/analysers/importers/coverage/Dialog.kt
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -40,14 +40,14 @@ class Dialog {
40
40
)
41
41
42
42
val keepLeadingPaths = session.promptConfirm(
43
-
message ="Do you want to cut leading file paths which surround the whole project?",
43
+
message ="Do you want to cut leading file paths segments that come before the project root directory?",
44
44
onInputReady = testCallback()
45
45
)
46
46
47
47
val languageParam ="--language=${language.languageName}"
48
48
val outputFileParam =if (outputFileName.isNotEmpty()) "--output-file=$outputFileName"elsenull
49
49
val notCompressedParam =if (isCompressed) nullelse"--not-compressed"
50
-
val keepLeadingPathsParam =if (keepLeadingPaths) "--keep-leading-path"elsenull
50
+
val keepLeadingPathsParam =if (keepLeadingPaths) "--keep-leading-paths"elsenull
0 commit comments