Skip to content

Commit

Permalink
shellcheck fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jan 10, 2024
1 parent fa14f40 commit a5b359a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/armbian-configng/set_get_system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ see_get_dependencies() {
# Check if any dependencies are missing
if [ ${#missing_dependencies[@]} -eq 0 ]; then
echo -e "\e[5;33mINFORMATION:\e[0m"
echo " Checking for dependencies ${dep[@]}"
echo " Checking for dependencies ${dep[*]}"
echo " All dependencies are installed."
echo ""
return 0
else
echo "Installing following dependencies: ${missing_dependencies[@]}"
echo "Installing following dependencies: ${missing_dependencies[*]}"
for dep in "${missing_dependencies[@]}"; do
sudo apt-get install -y $dep
done
Expand Down

0 comments on commit a5b359a

Please sign in to comment.