Skip to content

Commit 0a8fa60

Browse files
committed
make: suppress verbose install stdout
1 parent a4a6808 commit 0a8fa60

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ execute:
2525
i=0; \
2626
_paths=($(MODIFIED_RQT_PATHS)); \
2727
for notebook in ${MODIFIED_NOTEBOOKS}; do \
28-
echo $${_paths[i]}; \
29-
python -m pip install --force-reinstall -r $${_paths[i]}; \
28+
echo Installing requirements from $${_paths[i]}; \
29+
python -m pip install --force-reinstall -r $${_paths[i]} > /dev/null; \
3030
nbcollection execute --timeout=600 ${FLAGS} $$notebook; \
3131
i=$$((i+1)); \
3232
done
@@ -35,7 +35,7 @@ convert:
3535
i=0; \
3636
_paths=($(MODIFIED_RQT_PATHS)); \
3737
for notebook in ${MODIFIED_NOTEBOOKS}; do \
38-
echo $${_paths[i]}; \
38+
echo Installing requirements from $${_paths[i]}; \
3939
nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$notebook; \
4040
i=$$((i+1)); \
4141
done
@@ -44,8 +44,8 @@ executeall:
4444
i=0; \
4545
_paths=(${ALL_RQT_PATHS}); \
4646
for notebook in ${ALL_NOTEBOOKS}; do \
47-
echo $${_paths[i]}; \
48-
python -m pip install --force-reinstall -r $${_paths[i]}; \
47+
echo Installing requirements from $${_paths[i]}; \
48+
python -m pip install --force-reinstall -r $${_paths[i]} > /dev/null; \
4949
nbcollection execute --timeout=600 ${FLAGS} $$notebook; \
5050
i=$$((i+1)); \
5151
done
@@ -54,7 +54,7 @@ convertall:
5454
i=0; \
5555
_paths=($(ALL_RQT_PATHS)); \
5656
for notebook in ${ALL_NOTEBOOKS}; do \
57-
echo $${_paths[i]}; \
57+
echo Installing requirements from $${_paths[i]}; \
5858
nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$notebook; \
5959
i=$$((i+1)); \
6060
done

0 commit comments

Comments
 (0)