Allow offline building - skip package updater if there is no connection (#1841)

This commit is contained in:
Niek van der Maas
2019-08-06 21:13:08 +09:00
committed by Max Prokhorov
parent 437424aaac
commit 274f71d7d9

View File

@@ -66,9 +66,12 @@ def get_shared_libdeps_dir(section, name):
def ensure_platform_updated():
if PIO_PLATFORM.are_outdated_packages():
print("updating platform packages", file=sys.stderr)
PIO_PLATFORM.update_packages()
try:
if PIO_PLATFORM.are_outdated_packages():
print("updating platform packages", file=sys.stderr)
PIO_PLATFORM.update_packages()
except Exception:
print("Warning: no connection, cannot check for outdated packages", file=sys.stderr)
# latest toolchain is still optional with PIO (TODO: recheck after 2.6.0!)