Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12beea1 commit a49d0d1Copy full SHA for a49d0d1
tools/get.py
@@ -228,7 +228,7 @@ def identify_platform():
228
identified_platform = identify_platform()
229
print('Platform: {0}'.format(identified_platform))
230
tools_to_download = load_tools_list(current_dir + '/../package/package_esp32_index.template.json', identified_platform)
231
- is_test = (sys.argv[1] == '-h')
+ is_test = (len(sys.argv) > 1 and sys.argv[1] == '-h')
232
mkdir_p(dist_dir)
233
for tool in tools_to_download:
234
if is_test:
0 commit comments