8 lines
155 B
Bash
8 lines
155 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf testpython
|
||
|
mkdir testpython
|
||
|
|
||
|
cp -r ./src/* ./testpython/
|
||
|
|
||
|
source venv/bin/activate && cd ./testpython && python ./main.py && deactivate
|