Skip to content

Commit 87fd8d9

Browse files
authored
Remove quiet option from pre_build_script
1 parent dcd1e42 commit 87fd8d9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

packaging/pre_build_script.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ if [[ "$(uname)" == Darwin ]]; then
99
brew uninstall --ignore-dependencies --force $pkg || true
1010
done
1111

12-
conda install -yq wget
12+
conda install -y wget
1313
fi
1414

1515
if [[ "$(uname)" == Darwin || "$OSTYPE" == "msys" ]]; then
16-
conda install libpng libwebp -yq
16+
conda install libpng libwebp -y
1717
# Installing webp also installs a non-turbo jpeg, so we uninstall jpeg stuff
1818
# before re-installing them
1919
conda uninstall libjpeg-turbo libjpeg -y
20-
conda install -yq ffmpeg=4.2 libjpeg-turbo -c pytorch
20+
conda install -y ffmpeg=4.2 libjpeg-turbo -c pytorch
2121

2222
# Copy binaries to be included in the wheel distribution
2323
if [[ "$OSTYPE" == "msys" ]]; then
@@ -28,11 +28,11 @@ if [[ "$(uname)" == Darwin || "$OSTYPE" == "msys" ]]; then
2828
else
2929

3030
if [[ "$ARCH" == "aarch64" ]]; then
31-
conda install libpng -yq
32-
conda install -yq ffmpeg=4.2 libjpeg-turbo -c pytorch-nightly
31+
conda install libpng -y
32+
conda install -y ffmpeg=4.2 libjpeg-turbo -c pytorch-nightly
3333
fi
3434

35-
conda install libwebp -yq
35+
conda install libwebp -y
3636
conda install libjpeg-turbo -c pytorch
3737
yum install -y freetype gnutls
3838
pip install auditwheel

0 commit comments

Comments
 (0)