Improve project initialisation

This commit is contained in:
Ivan Kravets
2015-12-08 18:42:50 +02:00
parent c87c4691f3
commit 983db2f3c8
3 changed files with 35 additions and 14 deletions

View File

@@ -48,6 +48,13 @@ class PlatformNotInstalledYet(PlatformioException):
"Use `platformio platforms install` command"
class BoardNotDefined(PlatformioException):
MESSAGE = "You need to specify board type using `-b` or `--board` "\
"option. Supported boards list is available via "\
" `platformio boards` command"
class UnknownBoard(PlatformioException):
MESSAGE = "Unknown board type '%s'"