|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
#!/bin/sh
|
|
|
|
|
if [[$PVERSION=2]]; then
|
|
|
|
|
if [[ $PVERSION = 2 ]]; then
|
|
|
|
|
python -m py_compile cps.py
|
|
|
|
|
python -m py_compile cps/book_formats.py
|
|
|
|
|
python -m py_compile cps/db.py
|
|
|
|
@ -11,7 +11,7 @@ python -m py_compile cps/uploader.py
|
|
|
|
|
python -m py_compile cps/web.py
|
|
|
|
|
python -m py_compile cps.py
|
|
|
|
|
fi
|
|
|
|
|
f [[$PVERSION=3]]; then
|
|
|
|
|
if [[ $PVERSION = 3 ]]; then
|
|
|
|
|
python3.6 -m py_compile cps.py
|
|
|
|
|
python3.6 -m py_compile cps/book_formats.py
|
|
|
|
|
python3.6 -m py_compile cps/db.py
|
|
|
|
|