We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b2e590 commit 8d38cf8Copy full SHA for 8d38cf8
1 file changed
circuitpython_build_tools/scripts/build_bundles.py
@@ -81,7 +81,7 @@ def build_bundle(libs, bundle_version, output_filename,
81
if multiple_libs:
82
with open(os.path.join(build_dir, top_folder, "VERSIONS.txt"), "w") as f:
83
f.write(bundle_version + "\r\n")
84
- versions = subprocess.run('git submodule --quiet foreach --quiet \"git remote get-url origin && git describe --tags\"', shell=True, stdout=subprocess.PIPE, cwd=os.path.commonpath(libs))
+ versions = subprocess.run('git submodule --quiet foreach \"git remote get-url origin && git describe --tags\"', shell=True, stdout=subprocess.PIPE, cwd=os.path.commonpath(libs))
85
if versions.returncode != 0:
86
print("Failed to generate versions file. Its likely a library hasn't been "
87
"released yet.")
0 commit comments