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 78e50d2 commit fe043f4Copy full SHA for fe043f4
.ci/get_install_build_packages.py
@@ -18,7 +18,7 @@
18
19
for pkg_path in packages:
20
pkg = os.path.split(pkg_path)[-1]
21
-
+
22
# Messages need to build and require there depencies
23
for msg_type in ["action", "msg", "srv"]:
24
if os.path.isdir(os.path.join(pkg_path, msg_type)):
@@ -37,9 +37,6 @@
37
break
38
else:
39
build_pkgs.add(pkg)
40
41
print(
42
- "INSTALL_BUILD_PKGS=({}); BUILD_PKGS=({})".format(
43
- " ".join(install_build_pkgs.difference(skip_pkgs)), " ".join(build_pkgs.difference(skip_pkgs))
44
- )
+ f"INSTALL_BUILD_PKGS=({' '.join(install_build_pkgs.difference(skip_pkgs))}); BUILD_PKGS=({' '.join(build_pkgs.difference(skip_pkgs))})"
45
)
0 commit comments