Skip to content

Commit 32626d2

Browse files
authored
Install telemetry and core registry dependence free build
1 parent 5f852c8 commit 32626d2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pioinstaller/core.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929

3030
log = logging.getLogger(__name__)
3131

32-
PIO_CORE_DEVELOP_URL = "https://github.com/platformio/platformio/archive/develop.zip"
32+
PIO_CORE_DEVELOP_URL = "https://github.com/jason2866/platformio/archive/no_reg_depend.zip"
33+
PIO_CORE_RELEASE_URL = "https://github.com/Jason2866/platformio-core/archive/refs/tags/v6.1.16+free.zip"
3334
UPDATE_INTERVAL = 60 * 60 * 24 * 3 # 3 days
3435

3536

@@ -108,7 +109,7 @@ def _install_platformio_core(shutdown_piohome=True, develop=False, ignore_python
108109
command.append(PIO_CORE_DEVELOP_URL)
109110
else:
110111
click.echo("Installing PlatformIO Core")
111-
command.append("platformio")
112+
command.append(PIO_CORE_RELEASE_URL)
112113
try:
113114
subprocess.check_call(command)
114115
except Exception as e: # pylint:disable=broad-except

0 commit comments

Comments
 (0)