From 0700dc7a64b121cf0243416e2cbb82fcef15f5a0 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 1 Feb 2022 16:42:51 -0800 Subject: [PATCH] remove cygwin from compatible --- jc/parsers/rsync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/rsync.py b/jc/parsers/rsync.py index 061fa0c9..97f19f15 100644 --- a/jc/parsers/rsync.py +++ b/jc/parsers/rsync.py @@ -144,7 +144,7 @@ class info(): description = '`rsync` command parser' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' - compatible = ['linux', 'darwin', 'cygwin', 'freebsd'] + compatible = ['linux', 'darwin', 'freebsd'] magic_commands = ['rsync -i', 'rsync --itemize-changes']