File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## [ v3.7.5] ( https://github.com/Jrohy/multi-v2ray/releases/tag/v3.7.5 ) (2019-11-29)
4
+ - 加入生成随机邮箱 [ #253 ] ( https://github.com/Jrohy/multi-v2ray/issues/253 )
5
+ - fix [ #255 ] ( https://github.com/Jrohy/multi-v2ray/issues/255 ) : 纯IPV6的vps获取SSL证书失败,acme.sh无法安装
6
+ - fix [ #256 ] ( https://github.com/Jrohy/multi-v2ray/issues/256 )
7
+
3
8
## [ v3.7.4] ( https://github.com/Jrohy/multi-v2ray/releases/tag/v3.7.4 ) (2019-11-28)
4
9
- 测试支持纯ipv6 vps, 安装脚本路径更换
5
10
Original file line number Diff line number Diff line change 1
- __version__ = '3.7.4.1 '
1
+ __version__ = '3.7.5 '
2
2
3
3
from .util_core .trans import _
Original file line number Diff line number Diff line change @@ -175,7 +175,9 @@ def gen_cert(domain):
175
175
176
176
if not os .path .exists ("/root/.acme.sh/acme.sh" ):
177
177
if ":" in get_ip ():
178
- os .system ("curl https://multi.netlify.com/tools/acme.sh | INSTALLONLINE=1 sh" )
178
+ if not os .path .exists ("/root/.acme.sh/" ):
179
+ os .makedirs ("/root/.acme.sh" )
180
+ os .system ("curl https://multi.netlify.com/tools/acme.sh -o /root/.acme.sh/acme.sh" )
179
181
else :
180
182
os .system ("curl https://get.acme.sh | sh" )
181
183
You can’t perform that action at this time.
0 commit comments