From 624e659a26dd26cf245c3ced863b29e836fc7d6f Mon Sep 17 00:00:00 2001 From: "R. Eric Wheeler" Date: Tue, 22 Dec 2020 14:35:45 -0800 Subject: [PATCH] Fix Getch::LINUX_LIBRARY from libgetch.so to libgetwch.so --- src/Console/Getch.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Getch.php b/src/Console/Getch.php index f9e93ce..ddb6e3b 100644 --- a/src/Console/Getch.php +++ b/src/Console/Getch.php @@ -17,7 +17,7 @@ use RuntimeException; final class Getch { - private const LINUX_LIBRARY = __DIR__ . '/Resources/libgetch.so'; + private const LINUX_LIBRARY = __DIR__ . '/Resources/libgetwch.so'; private const WINDOWS_LIBRARY = 'ucrtbase.dll'; private static ?FFI $ffi = null;