This commit is contained in:
aozhiwei 2019-06-06 12:49:18 +08:00
parent 15de842b24
commit aa32e4d254
3 changed files with 10 additions and 0 deletions

8
boundle.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
tag_name=`git status |grep '# On branch '|sed 's/# On branch //g'`
dir_name=`basename $PWD`
package_name=${dir_name}.tar.gz
tar --exclude=*.git -chzf target/${package_name} bin config reload.sh restart.sh

1
reload.sh Normal file
View File

@ -0,0 +1 @@
echo 'sucess'

1
restart.sh Normal file
View File

@ -0,0 +1 @@
nohup python bin/game2001_rankserver.py >> bin/game2001_rankserver.out 2>&1 &