From 60a701ae371f570f4beadf9cedb005644f2d40c8 Mon Sep 17 00:00:00 2001 From: Cassidy James Blaede Date: Fri, 24 May 2024 14:48:31 -0600 Subject: [PATCH] Remove unused meson post install, correct action manifest path --- .github/workflows/flatpak.yml | 2 +- build-aux/meson/post_install.py | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 build-aux/meson/post_install.py diff --git a/.github/workflows/flatpak.yml b/.github/workflows/flatpak.yml index 58987c7..16b6fc2 100644 --- a/.github/workflows/flatpak.yml +++ b/.github/workflows/flatpak.yml @@ -21,5 +21,5 @@ jobs: - uses: flathub-infra/flatpak-github-actions/flatpak-builder@master with: bundle: tally.flatpak - manifest-path: com.cassidyjames.plausible.json + manifest-path: build-aux/flatpak/com.cassidyjames.plausible.json cache-key: "flatpak-builder-${{ github.sha }}" diff --git a/build-aux/meson/post_install.py b/build-aux/meson/post_install.py deleted file mode 100644 index 3b90a5c..0000000 --- a/build-aux/meson/post_install.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python3 - -import os -import subprocess - -print('Compiling gsettings schemas…') -subprocess.call([ - 'glib-compile-schemas', - os.path.join( - os.environ['MESON_INSTALL_PREFIX'], - 'share', - 'glib-2.0', - 'schemas') -])