]> asedeno.scripts.mit.edu Git - PuTTY.git/commitdiff
Rename the maps directory in release.pl.
authorSimon Tatham <anakin@pobox.com>
Sat, 21 Jan 2017 15:17:03 +0000 (15:17 +0000)
committerSimon Tatham <anakin@pobox.com>
Sat, 21 Jan 2017 15:17:03 +0000 (15:17 +0000)
The code that copies the link maps of the release Windows builds into
the place I store them for later debugging should now not
embarrassingly look in the wrong place when we make our first
post-VS2015 release.

release.pl

index f5bc3fac6f238e156056b4bb40e7806547772159..e903bf7da04a6b0971cf67cb475b0676633d6ea6 100755 (executable)
@@ -68,10 +68,10 @@ if ($upload) {
     defined $version or die "use --version";
 
     # Run this inside the build.out directory.
-    -d "maps-x86" or die "no maps-x86 directory in cwd";
+    -d "maps" or die "no maps directory in cwd";
     -d "putty" or die "no putty directory in cwd";
 
-    0 == system("rsync", "-av", "maps-x86/",
+    0 == system("rsync", "-av", "maps/",
                 "atreus:src/putty-local/maps-$version")
         or die "could not upload link maps";