Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyperf/pyperf_run
Original file line number Diff line number Diff line change
Expand Up @@ -400,13 +400,13 @@ if [[ $to_no_pkg_install -eq 0 ]]; then
exit_out "Unsupported python binary $python_bin_name, exiting" $E_GENERAL
fi

$TOOLS_BIN/package_tool --wrapper_config $python_dep_file
package_tool --wrapper_config $python_dep_file

if [[ $? -ne 0 ]]; then
exit_out "Error installing needed python dependencies" $E_GENERAL
fi

$TOOLS_BIN/package_tool --wrapper_config $base_dir/../pyperf.json $pkg_list --pip_packages "pyperformance==$PYPERF_VERSION"
package_tool --wrapper_config $base_dir/../pyperf.json $pkg_list --pip_packages "pyperformance==$PYPERF_VERSION"
Comment thread
kdvalin marked this conversation as resolved.

if [[ $? -ne 0 ]]; then
exit_out "Error installing system packages" $E_GENERAL
Expand Down
Loading