You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dirgroup.add_argument("-l", "--layer-dir", type=str, help="Path to the layer directory to process.")
608
+
dirgroup.add_argument("-l", "--layer-dir", action="append", default=[], help="Path to the layer directory to process. Can be specified multiple times.")
609
609
dirgroup.add_argument("-g", "--group-dir", type=str, help="Path to the group directory to process.")
610
610
dirgroup.add_argument("-t", "--template", type=str, help="Path to a template to build. Allows glob patterns (requires double qoutes).")
611
611
@@ -624,8 +624,12 @@ def main():
624
624
args.group_dir=os.path.abspath(args.group_dir)
625
625
dir2process=args.group_dir
626
626
ifargs.layer_dir:
627
-
args.layer_dir=os.path.abspath(args.layer_dir)
628
-
dir2process=args.layer_dir
627
+
# Convert input layer directories to absolute paths
0 commit comments