aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:21:47 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2021-05-06 17:21:47 -0400
commit008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d (patch)
tree2beee75883d125917148ea4e7b29084642fb3b4f /src/main.c
parent9664dec490808a834ca009ac293eca9ef25a6e8e (diff)
downloadcleanpath-008ebd1262268cf1c9a4bbdc0bf78d5c11cd5b1d.tar.gz
Disable regex on windows
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index ba23fcc..7bb92c3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -52,7 +52,7 @@ static void show_usage() {
printf(" --version -V Displays the program's version\n");
printf(" --exact -e Filter when pattern is an exact match (default)\n");
printf(" --loose -l Filter when any part of the pattern matches\n");
- printf(" --regex -r Filter matches with (Extended) Regular Expressions\n");
+ printf(" --regex -r Filter matches with (Extended) Regular Expressions " CLEANPATH_MSG_NOAVAIL "\n");
printf(" --sep [str] -s Use custom path separator (default: ':')\n");
printf(" --env [str] -E Use custom environment variable (default: PATH)\n");
}