From: Phillip Lord Date: Wed, 18 Sep 2019 16:58:30 +0000 (+0100) Subject: More path fixes X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6dd8dda76b63dfe3725b97e3a18d40097acf88dd;p=emacs.git More path fixes --- diff --git a/admin/nt/dist-build/build-dep-zips.py b/admin/nt/dist-build/build-dep-zips.py index f2fe59932ba..5698f5179c8 100755 --- a/admin/nt/dist-build/build-dep-zips.py +++ b/admin/nt/dist-build/build-dep-zips.py @@ -146,9 +146,9 @@ def gather_deps(deps, arch, directory): def download_source(tarball): print("Acquiring {}...".format(tarball)) - if os.path.exists("../emacs-src-old/{}".format(tarball)): + if os.path.exists("../emacs-src-cache/{}".format(tarball)): print("Copying {} from local".format(tarball)) - shutil.copyfile("../emacs-src-old/{}".format(tarball), + shutil.copyfile("../emacs-src-cache/{}".format(tarball), "{}".format(tarball)) else: print("Downloading {}...".format(tarball))