From beb9709ef88f2ba93a275a64d4b9335eb9ee6565 Mon Sep 17 00:00:00 2001 From: Magnus Nordlander Date: Thu, 27 Jan 2022 08:40:04 +0100 Subject: [PATCH] Fixed case sensitive dependency The case in the `Functional-VLPP` dependency causes library installs to fail: ``` $ arduino-cli lib install WiFiManager_NINA_Lite Error resolving dependencies for WiFiManager_NINA_Lite: dependency 'Functional-VLPP' is not available ``` --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index 46621f43..ab11411f 100644 --- a/library.properties +++ b/library.properties @@ -8,4 +8,4 @@ paragraph=Library to configure MultiWiFi/Credentials at runtime for AVR Mega, Te category=Communication url=https://github.com/khoih-prog/WiFiManager_NINA_Lite architectures=* -depends=Functional-VLPP,WiFiNINA_Generic,WiFiWebServer,DoubleResetDetector_Generic,FlashStorage_SAMD,FlashStorage_STM32 +depends=Functional-Vlpp,WiFiNINA_Generic,WiFiWebServer,DoubleResetDetector_Generic,FlashStorage_SAMD,FlashStorage_STM32