Skip to content

Commit

Permalink
software package fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasdiener committed Aug 26, 2024
1 parent c7d1afa commit f9ace03
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,18 @@ echo
echo "*** OS packages"

set +e
set -x

command -v brew && brew list --versions 2>/dev/null
command -v apt && apt list --installed 2>/dev/null
command -v rpm && rpm -qa 2>/dev/null
command -v brew && echo "brew list --versions" && brew list --versions 2>/dev/null
command -v apt && echo "apt list --installed" && apt list --installed 2>/dev/null
command -v rpm && echo "rpm -qa" && rpm -qa 2>/dev/null

set +x
set -e


echo
echo "*** OS modules"

command -v module && module list
command -v module && module --redirect list


echo
Expand Down

0 comments on commit f9ace03

Please sign in to comment.