Skip to content

Commit 82af7c7

Browse files
committed
Merge branch 'release/v0.1.1'
2 parents cdad5bf + eb4a5a2 commit 82af7c7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

get-platformio.py

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

pioinstaller/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
import logging.config
1616

17-
VERSION = (0, 1, 0)
17+
VERSION = (0, 1, 1)
1818
__version__ = ".".join([str(s) for s in VERSION])
1919

2020
__title__ = "platformio-installer"

pioinstaller/core.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ def install_platformio_core(shutdown_piohome=True, develop=False, ignore_pythons
105105
% penv_dir,
106106
fg="green",
107107
)
108-
click.secho(
109-
"The `platformio.exe` is located at: `%s`\n" % platformio_exe, fg="cyan"
110-
)
108+
click.secho("The full path to `platformio.exe` is `%s`" % platformio_exe, fg="cyan")
111109
# pylint:disable=line-too-long
112110
click.secho(
113-
"""If you need access to `platformio.exe` from other applications, please install shell commands
114-
(add PlatformIO Core binary directory `%s` to system environment PATH variable):
115-
https://docs.platformio.org/en/page/installation.html#install-shell-commands
111+
"""
112+
If you need an access to `platformio.exe` from other applications, please install Shell Commands
113+
(add PlatformIO Core binary directory `%s` to the system environment PATH variable):
114+
115+
See https://docs.platformio.org/page/installation.html#install-shell-commands
116116
"""
117117
% penv.get_penv_bin_dir(penv_dir),
118118
fg="cyan",

0 commit comments

Comments
 (0)