Update
This commit is contained in:
parent
c2cfc74f71
commit
0a88ad92a0
|
@ -5,5 +5,5 @@ echo -n $( dirname -- "$( readlink -f -- "$0" )" ) > pwd.txt
|
||||||
CWD=$(cat pwd.txt)
|
CWD=$(cat pwd.txt)
|
||||||
cd "${CWD}"
|
cd "${CWD}"
|
||||||
|
|
||||||
rm -rf "${CWD}/.venv"
|
find . -name .venv -type d -exec rm -vrf {} \;
|
||||||
find . -name __pycache__ -type d -exec rm -vrf {} \;
|
find . -name __pycache__ -type d -exec rm -vrf {} \;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
services:
|
services:
|
||||||
site:
|
site:
|
||||||
container_name: LeraFoxQueen
|
container_name: lerafoxqueen
|
||||||
build: .
|
build: .
|
||||||
working_dir: /code/app
|
working_dir: /code/app
|
||||||
image: LeraFoxQueen
|
image: LeraFoxQueen
|
||||||
|
|
|
@ -5,7 +5,7 @@ echo -n $( dirname -- "$( readlink -f -- "$0" )" ) > pwd.txt
|
||||||
CWD=$(cat pwd.txt)
|
CWD=$(cat pwd.txt)
|
||||||
cd "${CWD}"
|
cd "${CWD}"
|
||||||
|
|
||||||
rm -rf "${CWD}/.venv"
|
find . -name .venv -type d -exec rm -vrf {} \;
|
||||||
find . -name __pycache__ -type d -exec rm -vrf {} \;
|
find . -name __pycache__ -type d -exec rm -vrf {} \;
|
||||||
|
|
||||||
python -m venv .venv
|
python -m venv .venv
|
||||||
|
|
Loading…
Reference in New Issue