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
Add an "--only" flag to quickly build just one kind of artifact
Most often I find that I want to check just one kind of artifact
(e.g., mpy files) and this is a quicker syntax than excluding the
other 3 types with 3 --ignores.
@click.option('--filename_prefix', required=True, help="Filename prefix for the output zip files.")
236
237
@click.option('--output_directory', default="bundles", help="Output location for the zip files.")
237
238
@click.option('--library_location', required=True, help="Location of libraries to bundle.")
238
239
@click.option('--library_depth', default=0, help="Depth of library folders. This is useful when multiple libraries are bundled together but are initially in separate subfolders.")
239
240
@click.option('--package_folder_prefix', default="adafruit_", help="Prefix string used to determine package folders to bundle.")
240
241
@click.option('--remote_name', default="origin", help="Git remote name to use during building")
0 commit comments