Skip to content
This repository was archived by the owner on Feb 1, 2022. It is now read-only.

Commit 5964e77

Browse files
committed
Suppress stdout in rebuild.sh script
This makes config and build warnings more visible
1 parent 5057079 commit 5964e77

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rebuild.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
22

33
export CFLAGS="-Wall -Wextra -Wdeclaration-after-statement -Wmissing-field-initializers -Wshadow -Wno-unused-parameter -ggdb3"
4-
phpize && ./configure --with-mongo-sasl && make clean && make -j 5 all && make install
4+
phpize && ./configure --with-mongo-sasl > /dev/null && \
5+
make clean && make -j 5 all > /dev/null && make install

0 commit comments

Comments
 (0)