From 544f4ef07aaaabd44759c164777e993f6a22a11a Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Mon, 6 May 2024 11:46:09 -0700 Subject: [PATCH] allow changing increment --- iso/empanadas/empanadas/scripts/build_iso_live.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iso/empanadas/empanadas/scripts/build_iso_live.py b/iso/empanadas/empanadas/scripts/build_iso_live.py index 256ed4e..6b9f097 100755 --- a/iso/empanadas/empanadas/scripts/build_iso_live.py +++ b/iso/empanadas/empanadas/scripts/build_iso_live.py @@ -19,6 +19,7 @@ parser.add_argument('--hashed', action='store_true') parser.add_argument('--just-copy-it', action='store_true', help="Just copy the images to the compose dir") parser.add_argument('--force-build', action='store_true', help="Just build and overwrite the images") parser.add_argument('--builder', type=str, help="Choose a builder type and override the set value in the configs") +parser.add_argument('--increment', type=str, help="Changes the default increment of 0 to a number of your choice") results = parser.parse_args() rlvars = rldict[results.release] major = rlvars['major'] @@ -36,6 +37,7 @@ a = LiveBuild( justcopyit=results.just_copy_it, force_build=results.force_build, builder=results.builder, + image_increment=results.increment, logger=results.logger )