Skip to content

Commit 03373f4

Browse files
committed
set @click 'package_folder_prefix' default to 'adafruit_' to maintain backwards compatibility
1 parent f9ac09d commit 03373f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

circuitpython_build_tools/scripts/build_bundles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def _find_libraries(current_path, depth):
136136
@click.option('--output_directory', default="bundles", help="Output location for the zip files.")
137137
@click.option('--library_location', required=True, help="Location of libraries to bundle.")
138138
@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.")
139-
@click.option('--package_folder_prefix', default=None, required=False, help="Prefix string used to determine package folders to bundle.")
139+
@click.option('--package_folder_prefix', default="adafruit_", help="Prefix string used to determine package folders to bundle.")
140140
def build_bundles(filename_prefix, output_directory, library_location, library_depth, package_folder_prefix):
141141
os.makedirs(output_directory, exist_ok=True)
142142

0 commit comments

Comments
 (0)