From a223b45c9c56ed80dacd3dda5df50813aef9eeec Mon Sep 17 00:00:00 2001 From: vincent Date: Tue, 6 Oct 2020 19:34:20 +0200 Subject: [PATCH] pass .confirm_shortcut_change in post install --- PKGBUILD | 1 - pop-shell.install | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index d5470cc..9dc4f9a 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -36,6 +36,5 @@ package() { cd "${srcdir}/${_dir}" make DESTDIR="${pkgdir}/" install install -Dm755 scripts/configure.sh "${pkgdir}/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh" - touch "${pkgdir}/usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/.confirm_shortcut_change" } diff --git a/pop-shell.install b/pop-shell.install index 28fc0eb..08a4a6a 100755 --- a/pop-shell.install +++ b/pop-shell.install @@ -1,7 +1,8 @@ post_install() { echo "POP-shell configuration" - cd /usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts - ./configure.sh + cd $(mktemp -d) + touch .confirm_shortcut_change + /usr/share/gnome-shell/extensions/pop-shell@system76.com/scripts/configure.sh } post_upgrade() {