Skip to content

Commit 47daa89

Browse files
committed
Fix build
1 parent 69fee9a commit 47daa89

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

build.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ find_in_path() {
1919
}
2020

2121
# Setup virtual environment for jinja2-cli
22-
if [ ! -d pyenv ]; then
22+
if [ ! -d .venv ]; then
2323
echo "Creating virtual environment..."
24-
python -m venv pyenv
25-
. pyenv/bin/activate
26-
pip install jinja2-cli
24+
python -m venv .venv
25+
. .venv/bin/activate
26+
pip install "jinja2-cli[yaml]"
2727
else
28-
. pyenv/bin/activate
28+
. .venv/bin/activate
2929
fi
3030

3131
# Start

0 commit comments

Comments
 (0)