Skip to content

Commit

Permalink
Fix shellcheck warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed May 8, 2024
1 parent b6741be commit d99e574
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/Box86/install-64
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ else
box86_depends+=('libssl1.1:armhf')
fi

install_packages ${box86_depends[@]} libc6:armhf libstdc++6:armhf \
install_packages "${box86_depends[@]}" libc6:armhf libstdc++6:armhf \
libx11-6:armhf \
libgdk-pixbuf2.0-0:armhf \
libjpeg62:armhf \
Expand Down
2 changes: 1 addition & 1 deletion apps/Minecraft Bedrock/install-32
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if package_available libasound2t64; then
else
bedrock_depends+=('libasound2')
fi
install_packages ${bedrock_depends[@]} libx11-6 libxext6 libegl1 zlib1g libstdc++6 libgl1-mesa-dri libcom-err2 libgmp10 libp11-kit0 || exit 1
install_packages "${bedrock_depends[@]}" libx11-6 libxext6 libegl1 zlib1g libstdc++6 libgl1-mesa-dri libcom-err2 libgmp10 libp11-kit0 || exit 1

#Download file
mkdir -p ~/.local/bin || error "Could not make directory"
Expand Down
2 changes: 1 addition & 1 deletion apps/Minecraft Bedrock/install-64
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [[ -z "$jetson_model" ]] && [ ! -z "$__cpu_op_mode_32" ]; then
else
bedrock_depends+=('libasound2:armhf')
fi
install_packages ${bedrock_depends[@]} libx11-6:armhf libxext6:armhf libegl1:armhf zlib1g:armhf libstdc++6:armhf libgl1-mesa-dri:armhf libpulse0:armhf libcom-err2:armhf libgmp10:armhf libp11-kit0:armhf libsystemd0:armhf || exit 1
install_packages "${bedrock_depends[@]}" libx11-6:armhf libxext6:armhf libegl1:armhf zlib1g:armhf libstdc++6:armhf libgl1-mesa-dri:armhf libpulse0:armhf libcom-err2:armhf libgmp10:armhf libp11-kit0:armhf libsystemd0:armhf || exit 1
else
warning "Your system is only capable of running the ARM64 versions of Minecraft Bedrock. You will be unable to run older ARM32 versions of Minecraft Bedrock that you may find in this launcher."
fi
Expand Down

0 comments on commit d99e574

Please sign in to comment.