Skip to content

Commit 3a202d9

Browse files
committed
[CI] Fix JSON config path
Seen when script is not called from its directory. Signed-off-by: Frederic Pillon <[email protected]>
1 parent 50ca6f6 commit 3a202d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CI/build/arduino-cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def create_config():
135135
os.path.join(script_path, path_config_filename)
136136
)
137137
)
138-
path_config_file = open(path_config_filename, "w")
138+
path_config_file = open(os.path.join(script_path, path_config_filename), "w")
139139
path_config_file.write(
140140
json.dumps(
141141
{

0 commit comments

Comments
 (0)