mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-29 17:47:14 +02:00
Ignore duplicated manifest values
This commit is contained in:
@ -557,7 +557,7 @@ class LibraryPropertiesManifestParser(BaseManifestParser):
|
||||
continue
|
||||
if arch == "*":
|
||||
return ["*"]
|
||||
if arch in platforms_map:
|
||||
if arch in platforms_map and platforms_map[arch] not in result:
|
||||
result.append(platforms_map[arch])
|
||||
return result
|
||||
|
||||
|
@ -440,7 +440,7 @@ sentence=A library for monochrome TFTs and OLEDs
|
||||
paragraph=Supported display controller: SSD1306, SSD1309, SSD1322, SSD1325
|
||||
category=Display
|
||||
url=https://github.com/olikraus/u8glib
|
||||
architectures=avr,sam
|
||||
architectures=avr,sam,samd
|
||||
depends=First Library (=2.0.0), Second Library (>=1.2.0), Third
|
||||
"""
|
||||
raw_data = parser.ManifestParserFactory.new(
|
||||
|
Reference in New Issue
Block a user