From 9fb1287332ce38acc0fc160299b86388816e2a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=27sil2100=27=20Zemczak?= Date: Mon, 27 Mar 2023 17:27:14 +0200 Subject: [PATCH] Temporarily add a postinst file to use the git branch for the code to ease testing. --- debian/postinst | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 debian/postinst diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 00000000..daa64f8c --- /dev/null +++ b/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh + +set -ex + +git clone https://git.launchpad.net/livecd-rootfs -b ui-by-default-wip /tmp/livecd-rootfs +mv /usr/share/livecd-rootfs/live-build /usr/share/livecd-rootfs/live-build.orig +mv /tmp/livecd-rootfs/live-build /usr/share/livecd-rootfs/live-build + +rm -rf /tmp/livecd-rootfs