14 lines
309 B
Bash
Executable File
14 lines
309 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
printf '%s\n' 'Expected: Foundry 1.7.1, Node 24.18.0, npm 11.17.0'
|
|
|
|
for tool in forge anvil node npm make; do
|
|
if command -v "$tool" >/dev/null 2>&1; then
|
|
printf '%s: ' "$tool"
|
|
"$tool" --version | sed -n '1p'
|
|
else
|
|
printf '%s\n' "missing: $tool"
|
|
fi
|
|
done
|