Skip to content

Commit 1d6e0d8

Browse files
authored
Merge pull request #13 from adafruit/tannewt-patch-2
No longer include update scripts in the bundle
2 parents 3a44760 + 2dbfc78 commit 1d6e0d8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

circuitpython_build_tools/scripts/build_bundles.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,6 @@ def build_bundle(libs, bundle_version, output_filename,
103103
bundle.comment = json.dumps(build_metadata).encode("utf-8")
104104
if multiple_libs:
105105
total_size += add_file(bundle, "README.txt", "lib/README.txt")
106-
for filename in os.listdir("update_scripts"):
107-
src_file = os.path.join("update_scripts", filename)
108-
total_size += add_file(bundle, src_file, os.path.join("lib", filename))
109106
for root, dirs, files in os.walk(build_lib_dir):
110107
ziproot = root[len(build_dir + "/"):].replace("-", "_")
111108
for filename in files:

0 commit comments

Comments
 (0)