From 3a48f1c40baa6aa72caf3486d26cba91cfd8b578 Mon Sep 17 00:00:00 2001 From: Christopher Date: Fri, 12 Jun 2015 23:47:17 -0500 Subject: [PATCH] Updated recommened platforms install $ platformio install [platform] The above line is obsolete, I've changed the recommendation to reflect this latest version of the program. --- platformio/exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio/exception.py b/platformio/exception.py index 22b5978a..d8cb13fd 100644 --- a/platformio/exception.py +++ b/platformio/exception.py @@ -30,7 +30,7 @@ class UnknownPlatform(PlatformioException): class PlatformNotInstalledYet(PlatformioException): MESSAGE = ("The platform '%s' has not been installed yet. " - "Use `platformio install` command") + "Use `platformio platforms install` command") class UnknownCLICommand(PlatformioException):