Skip to content

Commit

Permalink
common: avoid error message when tools are not available
Browse files Browse the repository at this point in the history
  • Loading branch information
grom72 authored May 17, 2023
1 parent 3aca5be commit 4f29fd8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/gha-runners/get-system-info.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ function system_info {
ls -la /sys/bus/nd/devices/ndbus*/region*/namespace*/resource
ls -la /sys/bus/nd/devices/region*/deep_flush
echo "******list-build-system-versions*******"
gcc --version
clang --version
make --version
gcc --version 2>/dev/null || true
clang --version 2>/dev/null || true
make --version 2>/dev/null || true
}

# Call the function above to print system info.
Expand Down

0 comments on commit 4f29fd8

Please sign in to comment.