Skip to content

Commit

Permalink
Merge branch 'hotfix/setup_fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
gepd committed Mar 7, 2018
2 parents a7583c9 + abeba09 commit 2bd1510
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion beginning/pio_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def install(self):
out = run_command(cmd, "setup_error", self.OUTPUT_PATH)

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

# save env paths
env_path = [self.V_ENV_PATH, self.V_ENV_BIN_PATH]
Expand Down
2 changes: 1 addition & 1 deletion libraries/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (2, 2, 0)
VERSION = (2, 2, 1)
__version__ = ".".join([str(s) for s in VERSION[:3]])
if(len(VERSION) > 3):
__version__ += VERSION[3]
Expand Down

0 comments on commit 2bd1510

Please sign in to comment.