live iso should default to 0 increment

This commit is contained in:
Louis Abel 2024-05-21 13:14:20 -07:00
parent efbdafd84b
commit 1bfc1615d0
Signed by untrusted user: label
GPG Key ID: 2A6975660E424560

View File

@ -19,7 +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")
parser.add_argument('--increment', type=str, help="Changes the default increment of 0 to a number of your choice", default="0")
results = parser.parse_args()
rlvars = rldict[results.release]
major = rlvars['major']