Skip to content

Commit 58bef43

Browse files
authored
fix: cleanup .venv after building (#171)
1 parent 1d55c73 commit 58bef43

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Task/lambda/Taskfile.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ tasks:
3636
&& zip -r {{.OUTPUT_FILE}} {{.PROJECT_SLUG}} \
3737
&& python -m pip install --upgrade pipenv \
3838
&& PIPENV_VENV_IN_PROJECT=true pipenv install --deploy --ignore-pipfile \
39-
&& zip -r9 {{.OUTPUT_FILE}} .venv"
39+
&& zip -r9 {{.OUTPUT_FILE}} .venv \
40+
&& rm -rf .venv"
4041
4142
4243
publish:

0 commit comments

Comments
 (0)