Skip to content

Commit ce5283a

Browse files
author
Alexandru Scvortov
committed
silence unzip
1 parent 94cafa8 commit ce5283a

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ ensure-docs: rabbit-vsn
4646
doc: rabbit-vsn ensure-prerequisites ensure-release-dir ensure-docs
4747
rm -rf build/tmpdoc build/doc
4848
mkdir -p build/tmpdoc/html build/tmpdoc/xml
49-
unzip -j ${RELEASE_DIR}/${NAME_VSN}-client-htmldoc.zip -d build/tmpdoc/html
50-
unzip -j ${RELEASE_DIR}/${NAME_VSN}-tmp-xmldoc.zip -d build/tmpdoc/xml
49+
unzip -q -j ${RELEASE_DIR}/${NAME_VSN}-client-htmldoc.zip -d build/tmpdoc/html
50+
unzip -q -j ${RELEASE_DIR}/${NAME_VSN}-tmp-xmldoc.zip -d build/tmpdoc/xml
5151
cd docs && ./api-guide.sh && \
5252
mv api-guide.pdf ../${RELEASE_DIR}/${NAME_VSN}-api-guide.pdf
5353
$(MAKE) -C docs
@@ -56,9 +56,9 @@ doc: rabbit-vsn ensure-prerequisites ensure-release-dir ensure-docs
5656
${RELEASE_DIR}/${NAME_VSN}-wcf-service-model.pdf
5757
cd ${RELEASE_DIR} && \
5858
rm -rf ${NAME_VSN}-htmldoc && \
59-
unzip ${NAME_VSN}-client-htmldoc.zip -d ${NAME_VSN}-client-htmldoc && \
59+
unzip -q ${NAME_VSN}-client-htmldoc.zip -d ${NAME_VSN}-client-htmldoc && \
6060
rm -rf ${NAME_VSN}-wcf-htmldoc && \
61-
unzip ${NAME_VSN}-wcf-htmldoc.zip -d ${NAME_VSN}-wcf-htmldoc
61+
unzip -q ${NAME_VSN}-wcf-htmldoc.zip -d ${NAME_VSN}-wcf-htmldoc
6262

6363
clean:
6464
rm -rf $(RELEASE_DIR)/*

dist-msi.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ function build-msm-msi {
102102
function get-sources {
103103
safe-rm-deep-dir tmp/unzip
104104
mkdir -p tmp/unzip
105-
unzip $RELEASE_DIR/$NAME_VSN-dotnet-2.0.zip -d tmp/unzip/$NAME_VSN-dotnet-2.0
106-
unzip $RELEASE_DIR/$NAME_VSN-client-htmldoc.zip -d tmp/unzip/$NAME_VSN-client-htmldoc
105+
unzip -q $RELEASE_DIR/$NAME_VSN-dotnet-2.0.zip -d tmp/unzip/$NAME_VSN-dotnet-2.0
106+
unzip -q $RELEASE_DIR/$NAME_VSN-client-htmldoc.zip -d tmp/unzip/$NAME_VSN-client-htmldoc
107107
cp $RELEASE_DIR/$NAME_VSN-api-guide.pdf tmp/unzip/
108108
cp $RELEASE_DIR/$NAME_VSN-user-guide.pdf tmp/unzip/
109109
}

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $(MANDIR)/%.pdf: %-skeleton.xml
4646
mv $(TMPDIR)/$*.pdf $(MANDIR)
4747

4848
unpack-pyle:
49-
unzip ../tools/pyle2-snapshot-20080107.zip
49+
unzip -q ../tools/pyle2-snapshot-20080107.zip
5050
cp pyle2-config.py pyle2-snapshot-20080107/Config.py
5151

5252
delete-unpacked-pyle: stop-pyle

tools/check-distribution

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ mv $NET11ZIP $NET11ZIP.asc $NET20ZIP $NET20ZIP.asc $UPLOAD_ROOT/releases/binary
194194
mv $SRCZIP $SRCZIP.asc $UPLOAD_ROOT/releases/source
195195
mv *.pdf $COREDOCZIP $COREDOCZIP.asc $WCFDOCZIP $WCFDOCZIP.asc $UPLOAD_ROOT/releases/doc/rabbitmq-dotnet-$RELEASE_TAG
196196
cd $UPLOAD_ROOT/releases/doc/rabbitmq-dotnet-$RELEASE_TAG
197-
unzip $COREDOCZIP
198-
unzip $WCFDOCZIP
197+
unzip -q $COREDOCZIP
198+
unzip -q $WCFDOCZIP
199199
cd /tmp
200200
rm $TMPDIRNAME/installfiles
201201
rmdir $TMPDIRNAME

0 commit comments

Comments
 (0)