Merge pull request #226 from fiskhandlarn/patch-1
chore: use "clean up" as verb instead of adjective, add space before dots
This commit is contained in:
commit
55a9b883cf
|
@ -1,6 +1,6 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
echo "Cleanup the environment..."
|
echo "Clean up the environment ..."
|
||||||
IF EXIST "Src\external_dependencies\vcpkg" (
|
IF EXIST "Src\external_dependencies\vcpkg" (
|
||||||
echo Deleting "Src\external_dependencies\vcpkg" ...
|
echo Deleting "Src\external_dependencies\vcpkg" ...
|
||||||
rmdir /S /Q "Src\external_dependencies\vcpkg"
|
rmdir /S /Q "Src\external_dependencies\vcpkg"
|
||||||
|
@ -20,22 +20,22 @@ IF EXIST ".\vcpkg" (
|
||||||
)
|
)
|
||||||
|
|
||||||
if "%computername%"=="NullsoftBuildbox" (
|
if "%computername%"=="NullsoftBuildbox" (
|
||||||
echo "Uncompress the Qt Debug dlls..."
|
echo "Uncompress the Qt Debug dlls ..."
|
||||||
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Debug_Commercial.7z.001 -y -o.\Qt\DLL_5.12_x86
|
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Debug_Commercial.7z.001 -y -o.\Qt\DLL_5.12_x86
|
||||||
ren ".\Qt\DLL_5.12_x86\Debug_Commercial\" ".\Qt\DLL_5.12_x86\Debug"
|
ren ".\Qt\DLL_5.12_x86\Debug_Commercial\" ".\Qt\DLL_5.12_x86\Debug"
|
||||||
|
|
||||||
echo "Uncompress the Qt Release dlls..."
|
echo "Uncompress the Qt Release dlls ..."
|
||||||
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Release_Commercial.7z.001 -y -o.\Qt\DLL_5.12_x86
|
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Release_Commercial.7z.001 -y -o.\Qt\DLL_5.12_x86
|
||||||
ren ".\Qt\DLL_5.12_x86\Release_Commercial\" ".\Qt\DLL_5.12_x86\Release\"
|
ren ".\Qt\DLL_5.12_x86\Release_Commercial\" ".\Qt\DLL_5.12_x86\Release\"
|
||||||
) ELSE (
|
) ELSE (
|
||||||
echo "Uncompress the Qt Debug dlls..."
|
echo "Uncompress the Qt Debug dlls ..."
|
||||||
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Debug.7z.001 -y -o.\Qt\DLL_5.12_x86
|
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Debug.7z.001 -y -o.\Qt\DLL_5.12_x86
|
||||||
|
|
||||||
echo "Uncompress the Qt Release dlls..."
|
echo "Uncompress the Qt Release dlls ..."
|
||||||
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Release.7z.001 -y -o.\Qt\DLL_5.12_x86
|
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Qt\DLL_5.12_x86\Release.7z.001 -y -o.\Qt\DLL_5.12_x86
|
||||||
)
|
)
|
||||||
|
|
||||||
echo "Uncompress \Src\external_dependencies\CEF..."
|
echo "Uncompress \Src\external_dependencies\CEF ..."
|
||||||
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Src\external_dependencies\CEF.7z.001 -y -o.\Src\external_dependencies
|
.\BuildTools\7-ZipPortable_22.01\App\7-Zip\7z.exe x .\Src\external_dependencies\CEF.7z.001 -y -o.\Src\external_dependencies
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue