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.")
240
241
@click.option('--output_directory', default="bundles", help="Output location for the zip files.")
241
242
@click.option('--library_location', required=True, help="Location of libraries to bundle.")
242
243
@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.")
243
244
@click.option('--package_folder_prefix', default="adafruit_", help="Prefix string used to determine package folders to bundle.")
244
245
@click.option('--remote_name', default="origin", help="Git remote name to use during building")
0 commit comments