Skip to content

Commit 63a21f1

Browse files
committed
FIX: try pip install with --user
1 parent c77636c commit 63a21f1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

entrypoint

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
#!/bin/sh -l
22

3+
# install requirements.txt if it exists
4+
if [ -f requirements.txt ]; then
5+
pip install --user -r requirements.txt
6+
fi
7+
38
if ! [ -z "$INPUT_DOCSDIR" ]; then
49
cd $INPUT_DOCSDIR
510
fi

0 commit comments

Comments
 (0)