Skip to content

Commit 58a6010

Browse files
authored
Fix user meta path (#34)
1 parent 0f3405b commit 58a6010

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

extra_script.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
microros_transport = global_env.BoardConfig().get("microros_transport", "serial")
4040

4141
# Retrieve the user meta. Default none
42-
microros_user_meta = global_env.BoardConfig().get("microros_user_meta", "")
42+
microros_user_meta = "{}/{}".format(env['PROJECT_DIR'], global_env.BoardConfig().get("microros_user_meta", ""))
4343

4444
# Do not include build folder
4545
env['SRC_FILTER'] += ' -<build/include/*>'

0 commit comments

Comments
 (0)