Skip to content

Commit de5b0d1

Browse files
committed
set shell in makefile
1 parent 77ed929 commit de5b0d1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
default: build
22

3+
SHELL := /bin/bash
4+
35
TUTORIALS_MAIN_BRANCH ?= main
46

57
# paths to the individual notebooks that have been modified
@@ -45,7 +47,7 @@ executeall:
4547
echo $${_paths[i]}; \
4648
python -m pip install --force-reinstall -r $${_paths[i]}; \
4749
nbcollection execute --timeout=600 ${FLAGS} $$notebook; \
48-
i=$$(i+1); \
50+
i=$$((i+1)); \
4951
done
5052

5153
convertall:

0 commit comments

Comments
 (0)