diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-01-14 17:37:19 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-14 17:37:19 -0500 |
| commit | 738e8f002884a0ed302a695338c7be2af885ab39 (patch) | |
| tree | 5881455c93cda077940d2a64751df06a473a0a27 /tools | |
| parent | 6c1d671c7ebae0586a22a31cedca387e7fb36d8f (diff) | |
| parent | b5f35b82e18ba1208fd5d5a66f304cbd4d2af999 (diff) | |
Merge pull request #1467 from adafruit/tannewt-patch-5
Remove ESP8266 build
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_board_info.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/build_board_info.py b/tools/build_board_info.py index a4b49d160..163ebf624 100644 --- a/tools/build_board_info.py +++ b/tools/build_board_info.py @@ -12,7 +12,7 @@ from sh.contrib import git sys.path.append("adabot") import adabot.github_requests as github -SUPPORTED_PORTS = ["nrf", "esp8266", "atmel-samd"] +SUPPORTED_PORTS = ["nrf", "atmel-samd"] BIN = ('bin',) UF2 = ('uf2',) @@ -22,7 +22,6 @@ HEX = ('hex',) # Default extensions extension_by_port = { "nrf": UF2, - "esp8266": BIN, "atmel-samd": UF2, } |
