You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
280 B
15 lines
280 B
#!/bin/bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
ret=0
|
|
for tool in /etc/quadlets/base/install-tools.d/*.sh; do
|
|
tool_name="$(basename "$tool" .sh)"
|
|
echo "Installing $tool_name..."
|
|
if ! "$tool"; then
|
|
echo "Failed to install $tool_name!" >&2
|
|
ret=1
|
|
fi
|
|
done
|
|
|
|
exit $ret
|
|
|