Skip to content

Commit b410d58

Browse files
committed
Fix broken link when PIO Core has been installed
1 parent 53a0346 commit b410d58

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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)