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: docs/cli/configuration.md
+16-6
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
Any of the following can be used as the `verchew` configuration filename:
4
4
5
-
*`.verchew.ini`
6
-
*`verchew.ini`
7
-
*`.verchew`
8
-
*`.verchewrc`
9
-
5
+
-`.verchew.ini`
6
+
-`verchew.ini`
7
+
-`.verchew`
8
+
-`.verchewrc`
9
+
10
10
# Version Arguments
11
11
12
12
If one of your system dependencies uses an argument other than `--version` to display its version information, this can be changed in the configuration file using the `cli_version_arg` setting:
@@ -25,7 +25,7 @@ If the program lacks a specific argument to display its version, but contains ve
25
25
[7-Zip]
26
26
27
27
cli = 7z
28
-
cli_version_arg =
28
+
cli_version_arg =
29
29
version = 16
30
30
```
31
31
@@ -40,6 +40,16 @@ cli = python
40
40
version = Python 2 || Python 3
41
41
```
42
42
43
+
# Any Version
44
+
45
+
If the version of a system dependency is not important to your project, leave out the `version` setting to simply check for the existence of that program:
46
+
47
+
```ini
48
+
[Hugo]
49
+
50
+
cli = hugo
51
+
```
52
+
43
53
# Optional Programs
44
54
45
55
If one of your system dependencies is optional and you only want to show a warning for incompatible versions, include the `optional` setting:
0 commit comments