Skip to content

Commit 4296d66

Browse files
authored
Merge pull request #35 from sommersoft/fix_arg
Fix arg; again...
2 parents c4fa036 + 84aff92 commit 4296d66

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

circuitpython_build_tools/scripts/build_bundles.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def build_bundles(filename_prefix, output_directory, library_location, library_d
160160
filename_prefix + '-py-{VERSION}.zip'.format(
161161
VERSION=bundle_version))
162162
build_bundle(libs, bundle_version, zip_filename,
163-
pkg_folder_prefix=pkg_folder_prefix,
163+
pkg_folder_prefix=package_folder_prefix,
164164
build_tools_version=build_tools_version)
165165

166166
# Build .mpy bundle(s)
@@ -179,7 +179,7 @@ def build_bundles(filename_prefix, output_directory, library_location, library_d
179179
VERSION=bundle_version))
180180
build_bundle(libs, bundle_version, zip_filename, mpy_cross=mpy_cross,
181181
build_tools_version=build_tools_version,
182-
pkg_folder_prefix=pkg_folder_prefix)
182+
pkg_folder_prefix=package_folder_prefix)
183183

184184
# Build example bundle
185185
zip_filename = os.path.join(output_directory,

0 commit comments

Comments
 (0)