Skip to content

Commit 770e8a9

Browse files
committed
fix(tutorial/docker): copy notebook to subdir
1 parent 595cbed commit 770e8a9

File tree

1 file changed

+2
-1
lines changed
  • tutorial/root/etc/s6-overlay/s6-rc.d/init-jupyterlab

1 file changed

+2
-1
lines changed

tutorial/root/etc/s6-overlay/s6-rc.d/init-jupyterlab/run

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ if [ ! -d "${DEST}" ]; then
6060

6161
cp -a --reflink=auto "$SOURCE/.git" "$DEST/"
6262

63+
mkdir -p "$DEST/tutorial/"
6364
find "$SOURCE/tutorial/" -maxdepth 1 -type f -name "*.ipynb" | while read -r notebook; do
64-
cp -a --reflink=auto "$notebook" "$DEST/"
65+
cp -a --reflink=auto "$notebook" "$DEST/tutorial/"
6566
done
6667

6768
ln -s "$SOURCE/assets" "$DEST/assets"

0 commit comments

Comments
 (0)