Update flatpak_build_download_only.sh

Updated to use double brackets instead of single. Shortened `mkdir` using expansion for simplicity. Updated script so that all variables are properly quoted.
This commit is contained in:
Gorian 2023-10-14 12:20:33 -07:00 committed by GitHub
parent c5abfe431c
commit 96a6abf1ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@
git config --global protocol.file.allow always
if [ "${GITHUB_REF##*/}" = "main" ]; then
if [[ "${GITHUB_REF##*/}" == "main" ]]; then
BUNDLE_NAME="RetroDECK.flatpak"
FOLDER=retrodeck-flatpak-cooker
else
@ -12,13 +12,12 @@ else
FOLDER=retrodeck-flatpak-cooker
fi
mkdir -vp ${GITHUB_WORKSPACE}/local
mkdir -vp ${GITHUB_WORKSPACE}/retrodeck-flatpak-cooker
mkdir -vp "${GITHUB_WORKSPACE}"/{local,retrodeck-flatpak-cooker}
flatpak-builder --user --force-clean \
--install-deps-from=flathub \
--install-deps-from=flathub-beta \
--repo=${GITHUB_WORKSPACE}/local \
--repo="${GITHUB_WORKSPACE}/local" \
--download-only \
${GITHUB_WORKSPACE}/"$FOLDER" \
"${GITHUB_WORKSPACE}/${FOLDER}" \
net.retrodeck.retrodeck.yml