mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-02 13:24:12 +01:00
Fixed typo in LibraryInstaller variable name. Thanks nid69ita
This commit is contained in:
parent
319f1c3b63
commit
b3d7d952bb
@ -48,9 +48,9 @@ public class LibraryInstaller {
|
|||||||
private static final String LIBRARY_INDEX_URL;
|
private static final String LIBRARY_INDEX_URL;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
String extenalLibraryIndexUrl = System.getProperty("LIBRARY_INDEX_URL");
|
String externalLibraryIndexUrl = System.getProperty("LIBRARY_INDEX_URL");
|
||||||
if (extenalLibraryIndexUrl != null && !"".equals(extenalLibraryIndexUrl)) {
|
if (externalLibraryIndexUrl != null && !"".equals(externalLibraryIndexUrl)) {
|
||||||
LIBRARY_INDEX_URL = extenalLibraryIndexUrl;
|
LIBRARY_INDEX_URL = externalLibraryIndexUrl;
|
||||||
} else {
|
} else {
|
||||||
LIBRARY_INDEX_URL = "http://arduino.cc/download.php?f=/libraries/library_index.json";
|
LIBRARY_INDEX_URL = "http://arduino.cc/download.php?f=/libraries/library_index.json";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user