* build: forward --silent-progress argument to majoreo
2 files changed, 10 insertions(+), 2 deletions(-)

M build.sh
M build_mingw.sh
M build.sh +5 -1
@@ 1,5 1,9 @@ 
 # g++, make and cmake must be installed on this machine
-./bin/eo install -y genie clang spirv-tools spirv-cross pcre libarcmem \
+if [ "$1" = "--silent-progress" ]; then
+    EXTRA_EO_ARGS=--silent-progress
+fi
+
+./bin/eo install -y genie clang spirv-tools spirv-cross pcre libarcmem $EXTRA_EO_ARGS \
  && ./bin/eo sync \
  && ./bin/genie gmake \
  && make -j$(nproc) -C build config=release

          
M build_mingw.sh +5 -1
@@ 1,5 1,9 @@ 
 # g++, make and cmake must be installed on this machine
-./bin/eo install -y genie clang spirv-tools spirv-cross pcre \
+if [ "$1" = "--silent-progress" ]; then
+    EXTRA_EO_ARGS=--silent-progress
+fi
+
+./bin/eo install -y genie clang spirv-tools spirv-cross pcre $EXTRA_EO_ARGS \
  && ./bin/eo sync \
  && ./bin/genie gmake \
  && make -j$(nproc) -C build config=release