mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Update changelog, use basename
This commit is contained in:
parent
62f11bfb1b
commit
5b602ea1e0
2 changed files with 2 additions and 4 deletions
|
@ -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
|
||||
|
|
2
setup.py
2
setup.py
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue