Skip to content

Commit

Permalink
fix strace version display
Browse files Browse the repository at this point in the history
  • Loading branch information
jakoch committed Dec 16, 2024
1 parent 7f41769 commit 4c3c504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/scripts/show-tool-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ show_tool_versions() {
cppcheck_version=$(cppcheck --version | awk '{print $2}')
gprof_version=$(gprof --version | head -n1 | awk '{print $7}')
perf_version=$(perf --version | awk '{print $3}')
strace_version=$(strace --version | awk '{print $4}')
strace_version=$(strace --version | head -n1 | awk '{print $4}')
ltrace_version=$(ltrace --version | head -n1 | awk '{print $2}')
doxygen_version=$(doxygen -v | awk '{print $1}')
sphinx_version=$(sphinx-build --version | awk '{print $2}')
Expand Down

0 comments on commit 4c3c504

Please sign in to comment.