diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-08 17:24:30 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-05-08 17:25:36 -0400 |
commit | 054508b5edeaef602ee4251bb3828387cb26f582 (patch) | |
tree | e63aab38e53841cbf15295a8060d8bce7dd860cd /src | |
parent | ed0ba975e39cebb7e15c1fdac560a66a543fce87 (diff) | |
download | cleanpath-054508b5edeaef602ee4251bb3828387cb26f582.tar.gz |
Warn once about regex on windows from cleanpath utility, not library
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -145,6 +145,9 @@ int main(int argc, char *argv[]) { } if (ARGM("--regex") || ARGM("-r")) { filter_mode = CLEANPATH_FILTER_REGEX; +#if OS_WINDOWS + fprintf(stderr, "WARNING: --regex|-r is not implemented on Windows. Using default filter mode.\n"); +#endif continue; } if (ARGM("--sep") || ARGM("-s")) { |