Skip to content

Commit 8d38cf8

Browse files
committed
ugh; remove redundant --quiet
1 parent 3b2e590 commit 8d38cf8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

circuitpython_build_tools/scripts/build_bundles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def build_bundle(libs, bundle_version, output_filename,
8181
if multiple_libs:
8282
with open(os.path.join(build_dir, top_folder, "VERSIONS.txt"), "w") as f:
8383
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))
84+
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))
8585
if versions.returncode != 0:
8686
print("Failed to generate versions file. Its likely a library hasn't been "
8787
"released yet.")

0 commit comments

Comments
 (0)