From 0ce9e3748e12282ad540ad795afe5ee010a3fdcf Mon Sep 17 00:00:00 2001 From: RJ Trujillo Date: Thu, 2 Nov 2023 16:37:21 -0600 Subject: [PATCH] chore(system-update): Use /var instead of /etc --- files/etc/ublue-update.d/system/00-system-update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/etc/ublue-update.d/system/00-system-update.py b/files/etc/ublue-update.d/system/00-system-update.py index aa44a4b..eb3e399 100755 --- a/files/etc/ublue-update.d/system/00-system-update.py +++ b/files/etc/ublue-update.d/system/00-system-update.py @@ -25,7 +25,7 @@ def check_for_rebase(): return False, "" # Branch away from the default tag when one is set - branch_file = Path("/etc/ublue-update/branch") + branch_file = Path("/var/ublue-update/branch") if branch_file.exists(): with branch_file.open() as f: branch = f.readline()