update zip name

This commit is contained in:
Wengier
2020-09-30 13:37:02 -04:00
parent f209061af1
commit 04dcb6e45f
3 changed files with 4 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ The Windows installers for recent DOSBox-X versions are also available from:
Apart from the Windows installers, you can usually find three zip packages for each DOSBox-X version for the Windows platform in the Releases page as an alternative way to install DOSBox-X. These zip files are portable packages containing binaries built with Visual Studio 2019, MinGW 32-bit and MinGW 64-bit (or mingw-w64). For the current DOSBox-X version 0.83.6, these portable builds are separately available from: Apart from the Windows installers, you can usually find three zip packages for each DOSBox-X version for the Windows platform in the Releases page as an alternative way to install DOSBox-X. These zip files are portable packages containing binaries built with Visual Studio 2019, MinGW 32-bit and MinGW 64-bit (or mingw-w64). For the current DOSBox-X version 0.83.6, these portable builds are separately available from:
* [dosbox-x-windows-20200930-224615-windows.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-windows-20200930-224615-windows.zip) * [dosbox-x-windows-20200930-224615-vsbin.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-windows-20200930-224615-vsbin.zip)
* [dosbox-x-mingw-win32-20200930224903.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-mingw-win32-20200930224903.zip) * [dosbox-x-mingw-win32-20200930224903.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-mingw-win32-20200930224903.zip)
* [dosbox-x-mingw-win64-20200930235023.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-mingw-win64-20200930235023.zip) * [dosbox-x-mingw-win64-20200930235023.zip](https://github.com/joncampbell123/dosbox-x/releases/download/dosbox-x-v0.83.6/dosbox-x-mingw-win64-20200930235023.zip)

View File

@@ -47,12 +47,12 @@ set winzip=
set m32zip= set m32zip=
set m64zip= set m64zip=
for %%i in (%vsbinpath%\dosbox-x-windows-%datestr%-*-windows.zip) do set winzip=%%i for %%i in (%vsbinpath%\dosbox-x-windows-%datestr%-*-vsbin.zip) do set winzip=%%i
for %%i in (%mgbinpath%\dosbox-x-mingw-win32-%datestr%*.zip) do set m32zip=%%i for %%i in (%mgbinpath%\dosbox-x-mingw-win32-%datestr%*.zip) do set m32zip=%%i
for %%i in (%mgbinpath%\dosbox-x-mingw-win64-%datestr%*.zip) do set m64zip=%%i for %%i in (%mgbinpath%\dosbox-x-mingw-win64-%datestr%*.zip) do set m64zip=%%i
if not exist "%winzip%" ( if not exist "%winzip%" (
echo Couldn't find dosbox-x-windows-%datestr%-*-windows.zip at %vsbinpath% echo Couldn't find dosbox-x-windows-%datestr%-*-vsbin.zip at %vsbinpath%
goto error goto error
) )

View File

@@ -24,7 +24,7 @@ if ( "$branch" eq "develop-win-sdl1-async-hack-201802" ) {
} }
$suffix = $subdir; $suffix = $subdir;
$suffix =~ s/^.*\///g; $suffix =~ s/^.*\/windows/vsbin/g;
mkdir "release" unless -d "release"; mkdir "release" unless -d "release";
mkdir "$subdir" unless -d "$subdir"; mkdir "$subdir" unless -d "$subdir";