-
Notifications
You must be signed in to change notification settings - Fork 0
/
escs.sh
36 lines (27 loc) · 885 Bytes
/
escs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##############################################################################
# initialize.
cd ~/projects/
git clone git@bitbucket.org:iogf/whocall.git whocall-code
##############################################################################
# push, whocall, master.
cd ~/projects/whocall-code
# clean up all .pyc files.
find . -name "*.pyc" -exec rm -f {} \;
git status
git add *
git commit -a
git push -u origin master
##############################################################################
# push, whocall, alpha.
##############################################################################
#install #whocall
cd ~/projects/whocall-code
sudo bash -i
python2 setup.py install
rm -fr build
exit
##############################################################################
# get it on pip.
cd ~/projects/vy-code
python setup.py sdist register upload
rm -fr dist