Skip to content

Commit af6defb

Browse files
committed
Make build more silent.
Zipping the release packages spews all filenames to the console, that's just not necessary, fixed.
1 parent e01e984 commit af6defb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,21 +109,21 @@ release: all
109109
mkdir -p "cppreference-doc-$(VERSION)"
110110
cp -r $(DISTFILES) "cppreference-doc-$(VERSION)"
111111
tar czf "release/cppreference-doc-$(VERSION).tar.gz" "cppreference-doc-$(VERSION)"
112-
zip -r "release/cppreference-doc-$(VERSION).zip" "cppreference-doc-$(VERSION)"
112+
zip -qr "release/cppreference-doc-$(VERSION).zip" "cppreference-doc-$(VERSION)"
113113
rm -rf "cppreference-doc-$(VERSION)"
114114

115115
# zip the html output
116116
pushd "output"; \
117117
tar czf "../release/html-book-$(VERSION).tar.gz" "reference" \
118118
"cppreference-doxygen-local.tag.xml" ; \
119-
zip -r "../release/html-book-$(VERSION).zip" "reference" \
119+
zip -qr "../release/html-book-$(VERSION).zip" "reference" \
120120
"cppreference-doxygen-local.tag.xml" ; \
121121
popd
122122

123123
# zip qch
124124
pushd "output"; \
125125
tar czf "../release/qch-book-$(VERSION).tar.gz" "cppreference-doc-en-cpp.qch"; \
126-
zip -r "../release/qch-book-$(VERSION).zip" "cppreference-doc-en-cpp.qch"; \
126+
zip -qr "../release/qch-book-$(VERSION).zip" "cppreference-doc-en-cpp.qch"; \
127127
popd
128128

129129
#WORKER RULES

0 commit comments

Comments
 (0)