Somewhere along the way the cygwin part of kobopatch.sh seems to moved into the Linux case statement, so when you run kobopatch.sh on cygwin nothing happens. Most annoying

.
The following patch moves it back to where it should be.
Code:
--- kobopatch.sh.ORIG 2020-03-05 20:44:04.775936600 +1100
+++ kobopatch.sh 2020-03-04 22:43:57.836440400 +1100
@@ -19,11 +19,11 @@
aarch64)
./bin/kobopatch-linux-arm
;;
- CYGWIN_NT*)
- ./bin/koboptch-windows.exe
- ;;
*)
echo "Unsupported architecture"
esac
;;
+ CYGWIN_NT*)
+ ./bin/koboptch-windows.exe
+ ;;
esac