forked from platformio/platformio-core
Add SF package registry for PIO Plus
This commit is contained in:
@@ -29,10 +29,12 @@ PACKAGE_DEPS = {"pysite": {"name": "pysite-pioplus",
|
|||||||
class PioPlusPackageManager(PackageManager):
|
class PioPlusPackageManager(PackageManager):
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
PackageManager.__init__(
|
PackageManager.__init__(self, join(util.get_home_dir(), "packages"), [
|
||||||
self, join(util.get_home_dir(), "packages"),
|
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
|
||||||
["https://dl.bintray.com/platformio/dl-packages/manifest.json",
|
"https://sourceforge.net/projects/platformio-storage/files/"
|
||||||
"https://dl.platformio.org/packages/manifest.json"])
|
"packages/manifest.json/download",
|
||||||
|
"https://dl.platformio.org/packages/manifest.json"
|
||||||
|
])
|
||||||
|
|
||||||
|
|
||||||
def pioplus_install():
|
def pioplus_install():
|
||||||
|
Reference in New Issue
Block a user