minor changes
This commit is contained in:
parent
0a49da3458
commit
e08842cc7c
@ -57,7 +57,7 @@ total_failures=$((${#failures[@]}))
|
||||
|
||||
if [ $total_failures -gt 0 ]; then
|
||||
echo "$total_failures of the programs failed to install..."
|
||||
echo -e "$failures"
|
||||
echo -e "${failures[@]}"
|
||||
echo "Please manually rectify this and then rerun this setup with: ./setup defaults"
|
||||
exit 1
|
||||
else
|
||||
|
||||
@ -96,7 +96,7 @@ if [ $laptop -eq 1 ]; then
|
||||
fi
|
||||
|
||||
if ! yay -Qi $dependency &> /dev/null; then
|
||||
failures+=("$dependency")
|
||||
failures+=("$dependency\n")
|
||||
fi
|
||||
done
|
||||
fi
|
||||
@ -105,7 +105,7 @@ total_failures=$((${#failures[@]}))
|
||||
|
||||
if [ $total_failures -gt 0 ]; then
|
||||
echo "$total_failures of the programs failed to install..."
|
||||
echo -e "$failures"
|
||||
echo -e "${failures[@]}"
|
||||
echo "Please manually rectify this and then rerun this setup with: ./setup deps"
|
||||
exit 1
|
||||
else
|
||||
|
||||
@ -57,7 +57,7 @@ total_failures=$((${#failures[@]}))
|
||||
|
||||
if [ $total_failures -gt 0 ]; then
|
||||
echo "$total_failures of the programs failed to install..."
|
||||
echo -e "$failures"
|
||||
echo -e "${failures[@]}"
|
||||
echo "Please manually rectify this and then rerun this setup with: ./setup misc"
|
||||
exit 1
|
||||
else
|
||||
|
||||
Loading…
Reference in New Issue
Block a user