Skip to content

Commit c4fa036

Browse files
authored
Merge pull request #33 from sommersoft/fix_arg
Fix Mismatched arg Between Click And build_bundles()
2 parents 44c0748 + a96f2be commit c4fa036

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
@@ -137,7 +137,7 @@ def _find_libraries(current_path, depth):
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.")
139139
@click.option('--package_folder_prefix', default=None, required=False, help="Prefix string used to determine package folders to bundle.")
140-
def build_bundles(filename_prefix, output_directory, library_location, library_depth, pkg_folder_prefix):
140+
def build_bundles(filename_prefix, output_directory, library_location, library_depth, package_folder_prefix):
141141
os.makedirs(output_directory, exist_ok=True)
142142

143143
bundle_version = build.version_string()

0 commit comments

Comments
 (0)