aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-31 17:24:25 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-31 17:24:25 +0200
commit06e9c38a0e6245d894f6a33a00d5cf22d39f9015 (patch)
tree564264b4ce6cb010c2273eb130d2adb40ff20e15
parentadd dependency to get libdbus-so (diff)
downloadlibrewolf-linux-06e9c38a0e6245d894f6a33a00d5cf22d39f9015.tar.gz
librewolf-linux-06e9c38a0e6245d894f6a33a00d5cf22d39f9015.tar.bz2
librewolf-linux-06e9c38a0e6245d894f6a33a00d5cf22d39f9015.zip
xml is elsewhere at that point during flatpak build
-rwxr-xr-xflatpak/build_flatpak.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/flatpak/build_flatpak.sh b/flatpak/build_flatpak.sh
index d515ef6..a1d0934 100755
--- a/flatpak/build_flatpak.sh
+++ b/flatpak/build_flatpak.sh
@@ -54,7 +54,7 @@ flatpak-builder --disable-rofiles-fuse --repo="$FLATPAK_REPO" "$_FLATPAK_BUILD_F
# add appstream metadata
# TODO: firefox uses files/share/appdata/ in their flatpak, but https://docs.flatpak.org/en/latest/conventions.html says otherwise. which is "more" correct?
-install -Dvm644 "$_EXTRACTED_BINARY_TARBALL_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_FLATPAK_BUILD_FOLDER/files/share/metainfo/io.gitlab.LibreWolf.appdata.xml"
+install -Dvm644 "$_FLATPAK_BUILD_SOURCE_FOLDER/io.gitlab.LibreWolf.appdata.xml" "$_FLATPAK_BUILD_FOLDER/files/share/metainfo/io.gitlab.LibreWolf.appdata.xml"
# Build bundle
printf "\nBuilding flatpak bundle\n";
bgstack15