emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] feature/smaller-windows f24cda3: Path fixes


From: Phillip Lord
Subject: [Emacs-diffs] feature/smaller-windows f24cda3: Path fixes
Date: Wed, 18 Sep 2019 12:51:33 -0400 (EDT)

branch: feature/smaller-windows
commit f24cda3637dd7205b46a39161ab68ddd7edc0821
Author: Phillip Lord <address@hidden>
Commit: Phillip Lord <address@hidden>

    Path fixes
---
 admin/nt/dist-build/build-dep-zips.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/admin/nt/dist-build/build-dep-zips.py 
b/admin/nt/dist-build/build-dep-zips.py
index b0a999a..f2fe599 100755
--- a/admin/nt/dist-build/build-dep-zips.py
+++ b/admin/nt/dist-build/build-dep-zips.py
@@ -145,10 +145,11 @@ 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-old/{}".format(tarball)):
         print("Copying {} from local".format(tarball))
-        shutil.copyfile("./emacs-src-old/{}".format(tarball),
-                        "./emacs-src/{}".format(tarball))
+        shutil.copyfile("../emacs-src-old/{}".format(tarball),
+                        "{}".format(tarball))
     else:
         print("Downloading {}...".format(tarball))
         check_output_maybe(



reply via email to

[Prev in Thread] Current Thread [Next in Thread]