diff options
| -rwxr-xr-x | admin/nt/dist-build/build-dep-zips.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): | |||
| 146 | def download_source(tarball): | 146 | def download_source(tarball): |
| 147 | print("Acquiring {}...".format(tarball)) | 147 | print("Acquiring {}...".format(tarball)) |
| 148 | 148 | ||
| 149 | if os.path.exists("../emacs-src-old/{}".format(tarball)): | 149 | if os.path.exists("../emacs-src-cache/{}".format(tarball)): |
| 150 | print("Copying {} from local".format(tarball)) | 150 | print("Copying {} from local".format(tarball)) |
| 151 | shutil.copyfile("../emacs-src-old/{}".format(tarball), | 151 | shutil.copyfile("../emacs-src-cache/{}".format(tarball), |
| 152 | "{}".format(tarball)) | 152 | "{}".format(tarball)) |
| 153 | else: | 153 | else: |
| 154 | print("Downloading {}...".format(tarball)) | 154 | print("Downloading {}...".format(tarball)) |