mirror of
https://github.com/Retropex/raspiblitz.git
synced 2025-05-12 19:20:48 +02:00
fix(blitz.fatpack.sh): use $*
This commit is contained in:
parent
24997ac0ca
commit
b65fbf066d
@ -53,10 +53,10 @@ if [ "${needsExpansion}" == "1" ]; then
|
||||
fi
|
||||
|
||||
apt_install() {
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt install -y ${@}
|
||||
sudo DEBIAN_FRONTEND=noninteractive apt install -y "$*"
|
||||
if [ $? -eq 100 ]; then
|
||||
echo "FAIL! apt failed to install needed packages!"
|
||||
echo ${@}
|
||||
echo "$*"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user