View Single Post
Old 03-05-2020, 04:47 AM   #19
snarkophilus
Wannabe Connoisseur
snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.snarkophilus ought to be getting tired of karma fortunes by now.
 
Posts: 426
Karma: 2516674
Join Date: Apr 2011
Location: Geelong, Australia
Device: Kobo Libra 2, Kobo Aura 2, Sony PRS-T1, Sony PRS-350, Palm TX
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
snarkophilus is offline   Reply With Quote