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