14 lines
145 B
Bash
Executable File
14 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
|
|
|
|
cd src
|
|
rm -rf __pycache__
|
|
python ./draft1.py
|
|
|
|
echo "test done"
|
|
sleep 1
|
|
rm -rf __pycache__
|
|
cd
|