forked from 6dylan6/jdpro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjd_pullfix.py
36 lines (32 loc) · 1.26 KB
/
jd_pullfix.py
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
33
34
35
36
"""
15 0 * * * jd_pullfix.py
new Env('拉库|更新问题修复');
"""
#!/usr/bin/env python3
# coding: utf-8
import os
def pullfix():
print('\n对拉库失败、拉库成功但更新不出任务等问题修复\n')
print('\n开始执行。。。\n')
dir_path = os.path.dirname(os.path.abspath(__file__))
if 'main' not in dir_path:
if os.path.isdir('/ql/repo/6dylan6_jdpro'):
os.system('rm -rf /ql/repo/6dylan6_jdpro')
elif os.path.isdir('/ql/data/repo/6dylan6_jdpro'):
os.system('rm -rf /ql/data/repo/6dylan6_jdpro')
else:
print('无需修复,拉不动可能是代理问题')
# os.system('find /ql -maxdepth 2 -type d')
return False
else:
if os.path.isdir('/ql/repo/6dylan6_jdpro_main'):
os.system('rm -rf /ql/repo/6dylan6_jdpro_main')
elif os.path.isdir('/ql/data/repo/6dylan6_jdpro_main'):
os.system('rm -rf /ql/data/repo/6dylan6_jdpro_main')
else:
print('无需修复,拉不动可能是代理问题\n')
# os.system('find /ql -maxdepth 2 -type d')
return False
return True
if pullfix():
print('修复完成,再拉库试试!,如果还不行是网络或代理问题!!!')