File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ convert:
37
37
_paths=($( MODIFIED_RQT_PATHS) ); \
38
38
for notebook in ${MODIFIED_NOTEBOOKS} ; do \
39
39
echo Installing requirements from $$ {_paths[i]}; \
40
- python -m pip install --force-reinstall -r $$ {_paths[i]} > /dev/null; \
41
- nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$ notebook; \
40
+ ! python -m pip install --force-reinstall -r $$ {_paths[i]} > /dev/null; \
41
+ ! nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$ notebook; \
42
42
i=$$((i+1 ) ); \
43
43
done
44
44
@@ -57,8 +57,8 @@ convertall:
57
57
_paths=($( ALL_RQT_PATHS) ); \
58
58
for notebook in ${ALL_NOTEBOOKS} ; do \
59
59
echo Installing requirements from $$ {_paths[i]}; \
60
- python -m pip install --force-reinstall -r $$ {_paths[i]} > /dev/null; \
61
- nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$ notebook; \
60
+ ! python -m pip install --force-reinstall -r $$ {_paths[i]} > /dev/null; \
61
+ ! nbcollection convert ${CONVERTFLAGS} ${FLAGS} $$ notebook; \
62
62
i=$$((i+1 ) ); \
63
63
done
64
64
You can’t perform that action at this time.
0 commit comments