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 a531c22 commit 73719e6Copy full SHA for 73719e6
CI/build/arduino-cli.py
@@ -325,8 +325,8 @@ def load_core_config():
325
global arch
326
cores_config_filename = ""
327
if args.config:
328
- assert args.config.exists(), f"{args.config} not found"
329
- cores_config_filename = args.config
+ cores_config_filename = Path(args.config)
+ assert cores_config_filename.exists(), f"{args.config} not found"
330
else:
331
if args.ci:
332
cores_config_filename = cores_config_file_ci
0 commit comments