File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- from os import getenv
16
-
17
15
from platformio .managers .platform import PlatformBase
18
16
19
17
20
18
class Espressif8266Platform (PlatformBase ):
21
19
22
- @property
23
- def package_repositories (self ):
24
- repositories = super (
25
- Espressif8266Platform , self ).package_repositories or []
26
- if getenv ("CI" , "false" ).lower () == "true" :
27
- repositories = [
28
- "https://sourceforge.net/projects/platformio-storage/"
29
- "files/packages/manifest.json"
30
- ] + repositories
31
- return repositories
32
-
33
20
def configure_default_packages (self , variables , targets ):
34
21
if not variables .get ("pioframework" ):
35
22
self .packages ['sdk-esp8266' ]['optional' ] = False
You can’t perform that action at this time.
0 commit comments