@@ -1994,7 +1994,7 @@ def compile_(toolchain=None, target=None, options=False, compile_library=False,
1994
1994
args = remainder
1995
1995
# Find the root of the program
1996
1996
program = Program (os .getcwd (), True )
1997
- program .check_requirements ()
1997
+ program .check_requirements (True )
1998
1998
# Remember the original path. this is needed for compiling only the libraries and tests for the current folder.
1999
1999
orig_path = os .getcwd ()
2000
2000
@@ -2084,7 +2084,7 @@ def test_(toolchain=None, target=None, compile_list=False, run_list=False, compi
2084
2084
args = remainder
2085
2085
# Find the root of the program
2086
2086
program = Program (os .getcwd (), True )
2087
- program .check_requirements ()
2087
+ program .check_requirements (True )
2088
2088
# Save original working directory
2089
2089
orig_path = os .getcwd ()
2090
2090
@@ -2170,7 +2170,7 @@ def export(ide=None, target=None, source=False, clean=False, supported=False):
2170
2170
args = remainder
2171
2171
# Find the root of the program
2172
2172
program = Program (os .getcwd (), True )
2173
- program .check_requirements ()
2173
+ program .check_requirements (True )
2174
2174
# Remember the original path. this is needed for compiling only the libraries and tests for the current folder.
2175
2175
orig_path = os .getcwd ()
2176
2176
# Change directories to the program root to use mbed OS tools
@@ -2214,7 +2214,7 @@ def detect():
2214
2214
args = remainder
2215
2215
# Find the root of the program
2216
2216
program = Program (os .getcwd (), True )
2217
- program .check_requirements ()
2217
+ program .check_requirements (True )
2218
2218
# Change directories to the program root to use mbed OS tools
2219
2219
with cd (program .path ):
2220
2220
tools_dir = program .get_tools ()
0 commit comments