You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[skip changelog] Update Platform Specification link in warning (#1199)
When a boards platform uses an outdated `recipe.ar.pattern`, Arduino CLI displays a helpful message:
Unable to cache built core, please tell foo:[email protected] maintainers to follow http://goo.gl/QdCUjo
That short link points to the old Arduino Platform Specification page in the arduino/Arduino repository's wiki. The
platform specification has since been moved to the arduino/arduino-cli repository.
Even though the old page provides a
link to the new location, this message uses an anchor to direct the developer to the relevant section of the
specification. When they follow the link from the old page, they will simply end up at the top of the specification and
may have a hard time finding the information that tells them how to fix the platform. Updating the link restores the
intended behavior.
Copy file name to clipboardExpand all lines: legacy/builder/constants/constants.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ const LOG_LEVEL_WARN = "warn"
83
83
constMSG_ARCH_FOLDER_NOT_SUPPORTED="'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more information"
84
84
constMSG_ARCHIVING_CORE_CACHE="Archiving built core (caching) in: {0}"
85
85
constMSG_ERROR_ARCHIVING_CORE_CACHE="Error archiving built core (caching) in {0}: {1}"
86
-
constMSG_CORE_CACHE_UNAVAILABLE="Unable to cache built core, please tell {0} maintainers to follow http://goo.gl/QdCUjo"
86
+
constMSG_CORE_CACHE_UNAVAILABLE="Unable to cache built core, please tell {0} maintainers to follow https://arduino.github.io/arduino-cli/latest/platform-specification/#recipes-to-build-the-corea-archive-file"
87
87
constMSG_BOARD_UNKNOWN="Board {0} (platform {1}, package {2}) is unknown"
88
88
constMSG_BOOTLOADER_FILE_MISSING="Bootloader file specified but missing: {0}"
0 commit comments