Skip to content

Commit 2bd1510

Browse files
committed
Merge branch 'hotfix/setup_fix'
2 parents a7583c9 + abeba09 commit 2bd1510

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

beginning/pio_install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def install(self):
182182
out = run_command(cmd, "setup_error", self.OUTPUT_PATH)
183183

184184
cmd = create_command(['pip', 'install', '-U', 'platformio'])
185-
out = run_command(cmd, "setup_error")
185+
out = run_command(cmd, "setup_error", cwd=self.V_ENV_BIN_PATH)
186186

187187
# save env paths
188188
env_path = [self.V_ENV_PATH, self.V_ENV_BIN_PATH]

libraries/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (2, 2, 0)
1+
VERSION = (2, 2, 1)
22
__version__ = ".".join([str(s) for s in VERSION[:3]])
33
if(len(VERSION) > 3):
44
__version__ += VERSION[3]

0 commit comments

Comments
 (0)