From 184ed2d71b236ab46d65a89dbf5a9bf54f8ff812 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 22 Jul 2022 16:26:07 +0200 Subject: [PATCH] stages/containers.storage.conf: fix filename prop The schema said `filename` but we were accessing `location`. Ups. --- stages/org.osbuild.containers.storage.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/org.osbuild.containers.storage.conf b/stages/org.osbuild.containers.storage.conf index 6d8dd6fb..9e73c7a7 100755 --- a/stages/org.osbuild.containers.storage.conf +++ b/stages/org.osbuild.containers.storage.conf @@ -149,7 +149,7 @@ def write_comment(f, comment: list): def main(tree, options): - location = options.get("location", DEFAULT_LOCATION) + location = options.get("filename", DEFAULT_LOCATION) config = options["config"] comment = options.get("comment", [])