##// END OF EJS Templates
ssl: remove special case of web.cacerts=! from remoteui()...
Yuya Nishihara -
r29594:e417664a default
parent child Browse files
Show More
@@ -927,9 +927,7 b' def remoteui(src, opts):'
927 for key, val in src.configitems(sect):
927 for key, val in src.configitems(sect):
928 dst.setconfig(sect, key, val, 'copied')
928 dst.setconfig(sect, key, val, 'copied')
929 v = src.config('web', 'cacerts')
929 v = src.config('web', 'cacerts')
930 if v == '!':
930 if v:
931 dst.setconfig('web', 'cacerts', v, 'copied')
932 elif v:
933 dst.setconfig('web', 'cacerts', util.expandpath(v), 'copied')
931 dst.setconfig('web', 'cacerts', util.expandpath(v), 'copied')
934
932
935 return dst
933 return dst
General Comments 0
You need to be logged in to leave comments. Login now