Skip to content

Commit 34723f2

Browse files
committed
Silence the repack script
1 parent b0c36a6 commit 34723f2

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

scripts/repack-bundled-wheels.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,13 @@ patch_wheel() {
6868
mkdir "$tmpdir"
6969
git show "python-import:$wheel" > tmp.whl || missing_python_import
7070
cd "$tmpdir"
71-
unzip ../tmp.whl
71+
unzip -q ../tmp.whl
7272
rm ../tmp.whl
73-
patch -p1 < "../$patch"
73+
patch --quiet -p1 < "../$patch"
7474
touch "$(echo $name-*.dist-info)/GRAALPY_MARKER"
7575
rm "../$wheel"
76-
zip -r "../$wheel" .
76+
zip -qr "../$wheel" .
77+
cd ..
7778
rm -rf "$tmpdir"
7879
}
7980

0 commit comments

Comments
 (0)