Skip to content

Commit

Permalink
Add verbose to environment.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
lepapareil committed Apr 2, 2024
1 parent f6d2e6c commit e387e82
Showing 1 changed file with 32 additions and 4 deletions.
36 changes: 32 additions & 4 deletions bin/environment.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,37 @@
#!/bin/bash
set -Eeuo pipefail

uname -a
python3 -V
which curl
curl --version
date

echo "# os"
uname -a

echo "# python3"
if command -V python3 ; then
which python3
python3 -V
which pip
pip --version
else
echo "No python3 installed"
fi

echo "# curl"
if command -V curl ; then
which curl || true
curl --version || true
else
echo "No curl installed"
fi


echo "# rust"
if command -V rustc ; then
which rustc
rustc --version
which cargo
cargo --version
else
echo "No rust installed"
fi

0 comments on commit e387e82

Please sign in to comment.