Update changelog, use basename

This commit is contained in:
twangboy 2021-04-29 17:12:41 -06:00 committed by Gareth J. Greenaway
parent 62f11bfb1b
commit 5b602ea1e0
2 changed files with 2 additions and 4 deletions

View file

@ -1,3 +1 @@
Update the Salt installer to use Python 3.8 for its python environment
Update libsodium.dll to 1.0.18
Update OpenSSL dlls to 1.1.1k
Update Windows build deps & DLLs, Use Python 3.8, libsodium.dll 1.0.18, OpenSSL dlls to 1.1.1k

View file

@ -513,7 +513,7 @@ class DownloadWindowsDlls(Command):
if find_library(fname):
continue
furl = url.format(bits=platform_bits[:2], fname=fname)
fdest = dest.format(fname=fname.split("/")[-1])
fdest = dest.format(fname=os.path.basename(fname))
if not os.path.exists(fdest):
log.info("Downloading {} to {} from {}".format(fname, fdest, furl))
try: