From e4538826fdcc4ae7083d4e49ba337ba5d5e6a397 Mon Sep 17 00:00:00 2001 From: Sanne Raymaekers Date: Tue, 21 Jan 2025 12:09:05 +0100 Subject: [PATCH] constants: use .cache for blueprints `.cache` is for writing, `.local/share` is technically static data. --- src/constants.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index af41711c..3da6cbcf 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -277,5 +277,4 @@ export const PAGINATION_LIMIT = 10; export const PAGINATION_COUNT = 0; export const SEARCH_INPUT = ''; -export const BLUEPRINTS_DIR = - '.local/share/cockpit/cockpit-image-builder/blueprints'; +export const BLUEPRINTS_DIR = '.cache/cockpit-image-builder/';