Skip to content

Commit

Permalink
Make 'pip3 freeze' optional (#868)
Browse files Browse the repository at this point in the history
Signed-off-by: Christophe Bedard <[email protected]>
  • Loading branch information
christophebedard authored Apr 30, 2024
1 parent c1948f6 commit 3a279e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11610,7 +11610,7 @@ done`;
yield checkRosdeps(buildPackageSelection, rosdepSkipKeysSelection, rosWorkspaceDir, options, targetRos1Distro, targetRos2Distro);
}
// Print list of Python packages and their version
yield execShellCommand(["pip3", "freeze"], options);
yield execShellCommand(["pip3 freeze || true"], options);
if (colconDefaults.includes(`"mixin"`) && colconMixinRepo !== "") {
yield execShellCommand([`colcon`, `mixin`, `add`, `default`, `${colconMixinRepo}`], options, false);
yield execShellCommand([`colcon`, `mixin`, `update`, `default`], options, false);
Expand Down
2 changes: 1 addition & 1 deletion src/action-ros-ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ done`;
}

// Print list of Python packages and their version
await execShellCommand(["pip3", "freeze"], options);
await execShellCommand(["pip3 freeze || true"], options);

if (colconDefaults.includes(`"mixin"`) && colconMixinRepo !== "") {
await execShellCommand(
Expand Down

0 comments on commit 3a279e6

Please sign in to comment.