forked from platformio/platformio-core
Force docs to HTTPS
This commit is contained in:
@ -58,7 +58,7 @@ class DebugServer(BaseProcess):
|
|||||||
"\nCould not launch Debug Server '%s'. Please check that it "
|
"\nCould not launch Debug Server '%s'. Please check that it "
|
||||||
"is installed and is included in a system PATH\n\n"
|
"is installed and is included in a system PATH\n\n"
|
||||||
"See documentation or contact contact@platformio.org:\n"
|
"See documentation or contact contact@platformio.org:\n"
|
||||||
"http://docs.platformio.org/page/plus/debugging.html\n"
|
"https://docs.platformio.org/page/plus/debugging.html\n"
|
||||||
% server_executable
|
% server_executable
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ def handle_legacy_libdeps(project_dir, config):
|
|||||||
"DEPRECATED! A legacy library storage `{0}` has been found in a "
|
"DEPRECATED! A legacy library storage `{0}` has been found in a "
|
||||||
"project. \nPlease declare project dependencies in `platformio.ini`"
|
"project. \nPlease declare project dependencies in `platformio.ini`"
|
||||||
" file using `lib_deps` option and remove `{0}` folder."
|
" file using `lib_deps` option and remove `{0}` folder."
|
||||||
"\nMore details -> http://docs.platformio.org/page/projectconf/"
|
"\nMore details -> https://docs.platformio.org/page/projectconf/"
|
||||||
"section_env_library.html#lib-deps".format(legacy_libdeps_dir),
|
"section_env_library.html#lib-deps".format(legacy_libdeps_dir),
|
||||||
fg="yellow",
|
fg="yellow",
|
||||||
)
|
)
|
||||||
|
@ -301,6 +301,6 @@ class TestDirNotExists(PlatformioException):
|
|||||||
"A test folder '{0}' does not exist.\nPlease create 'test' "
|
"A test folder '{0}' does not exist.\nPlease create 'test' "
|
||||||
"directory in project's root and put a test set.\n"
|
"directory in project's root and put a test set.\n"
|
||||||
"More details about Unit "
|
"More details about Unit "
|
||||||
"Testing: http://docs.platformio.org/page/plus/"
|
"Testing: https://docs.platformio.org/page/plus/"
|
||||||
"unit-testing.html"
|
"unit-testing.html"
|
||||||
)
|
)
|
||||||
|
@ -41,5 +41,5 @@ class ManifestValidationError(ManifestException):
|
|||||||
def __str__(self):
|
def __str__(self):
|
||||||
return (
|
return (
|
||||||
"Invalid manifest fields: %s. \nPlease check specification -> "
|
"Invalid manifest fields: %s. \nPlease check specification -> "
|
||||||
"http://docs.platformio.org/page/librarymanager/config.html" % self.messages
|
"htts://docs.platformio.org/page/librarymanager/config.html" % self.messages
|
||||||
)
|
)
|
||||||
|
Reference in New Issue
Block a user