From 883b9dc3c554643436febeb0833b3fcb59fedfaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Budai?= Date: Thu, 5 Sep 2019 09:38:05 +0200 Subject: [PATCH] osbuild: Change default value of --store to just .osbuild This commit changes the default value of --store argument from .osbuild/store to just .osbuild. The reason is just to make the path shorter. --- osbuild/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osbuild/__main__.py b/osbuild/__main__.py index 04508d07..8b3481b7 100755 --- a/osbuild/__main__.py +++ b/osbuild/__main__.py @@ -17,7 +17,7 @@ def main(): parser.add_argument("--build-pipeline", metavar="PIPELINE", type=os.path.abspath, help="json file containing the pipeline to create a build environment") parser.add_argument("--store", metavar="DIRECTORY", type=os.path.abspath, - default=".osbuild/store", + default=".osbuild", help="the directory where intermediary os trees are stored") parser.add_argument("-l", "--libdir", metavar="DIRECTORY", type=os.path.abspath, help="the directory containing stages, assemblers, and the osbuild library")