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
@@ -29,6 +31,10 @@ export function getConfigFileDirectoryGivenMessage(configFile: string): string {
29
31
return`The configuration file "${configFile}" looks like a directory, not a file`;
30
32
}
31
33
34
+
exportfunctiongetEmptyCombinesError(): string{
35
+
return`A '+' was used to specify that you want to add extra arguments to the configuration, but no extra arguments were specified. Please either remove the '+' or specify some extra arguments.`;
36
+
}
37
+
32
38
exportfunctiongetConfigFilePropertyError(
33
39
configFile: string|undefined,
34
40
property: string,
@@ -41,6 +47,13 @@ export function getConfigFilePropertyError(
41
47
}
42
48
}
43
49
50
+
exportfunctiongetRepoPropertyError(
51
+
propertyName: RepositoryPropertyName,
52
+
error: string,
53
+
): string{
54
+
return`The repository property "${propertyName}" is invalid: ${error}`;
0 commit comments