From 1eba9961d5a56afeabce78ac643fb6b9903866d7 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Tue, 2 Apr 2024 10:55:25 -0700 Subject: [PATCH] umu_consts: delete cache variable - The launcher will no longer have or use the cache directory ~/.cache/umu to store archives --- umu/umu_consts.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/umu/umu_consts.py b/umu/umu_consts.py index e08ef15f..a4f84b27 100644 --- a/umu/umu_consts.py +++ b/umu/umu_consts.py @@ -47,5 +47,3 @@ class MODE(Enum): UMU_LOCAL: Path = ( FLATPAK_PATH if FLATPAK_PATH else Path.home().joinpath(".local", "share", "umu") ) - -UMU_CACHE: Path = Path.home().joinpath(".cache", "umu")