Remove tools/check-build-system (#642)

This commit is contained in:
Marko Budiselić 2022-11-07 18:54:22 +01:00 committed by GitHub
parent b4beb0fc86
commit c4c3a254bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +0,0 @@
#!/bin/bash -e
tools=(
go
dotnet
npm
node
java
javac
mono
mcs
virtualenv
)
is_ok=true
for tool in "${tools[@]}"; do
if ! which "$tool" >/dev/null; then
is_ok=false
echo "$tool not installed!"
fi
done
if [ "$is_ok" = true ]; then
exit 0
else
exit 1
fi