1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

Rename the maps directory in release.pl.

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.
This commit is contained in:
Simon Tatham 2017-01-21 15:17:03 +00:00
parent 2c07c641a0
commit d3c52715d8

View File

@ -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";