diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-04 21:52:16 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2017-06-05 01:41:46 +0200 |
commit | bf13f88ffaef175bb6ff13beca30f76ed12bac6e (patch) | |
tree | 20cd1bd9dd7d9ebe68f75bd84d9bf29efea28034 /src/Signing | |
parent | 1f22d53f0051727722da794f467bec87af9adf02 (diff) | |
download | VeraCrypt-bf13f88ffaef175bb6ff13beca30f76ed12bac6e.tar.gz VeraCrypt-bf13f88ffaef175bb6ff13beca30f76ed12bac6e.zip |
Windows: Move User Guide CHM file under "docs" folder
Diffstat (limited to 'src/Signing')
-rw-r--r-- | src/Signing/sign.bat | 5 | ||||
-rw-r--r-- | src/Signing/sign_test.bat | 2 | ||||
-rw-r--r-- | src/Signing/sign_test_debug.bat | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/src/Signing/sign.bat b/src/Signing/sign.bat index 8431cf5b..837c366a 100644 --- a/src/Signing/sign.bat +++ b/src/Signing/sign.bat @@ -1,8 +1,9 @@ PATH=%PATH%;%WSDK81%\bin\x86;C:\Program Files\7-Zip;C:\Program Files (x86)\7-Zip set SIGNINGPATH=%~dp0 +cd %SIGNINGPATH% -call "..\..\..\doc\chm\create_chm.bat" +call "..\..\doc\chm\create_chm.bat" cd %SIGNINGPATH% @@ -20,7 +21,6 @@ cd "..\Release\Setup Files\" copy ..\..\LICENSE . copy ..\..\License.txt . copy ..\..\NOTICE . -copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" . del *.xml copy /V /Y ..\..\..\Translations\*.xml . @@ -28,6 +28,7 @@ copy /V /Y ..\..\..\Translations\*.xml . rmdir /S /Q docs mkdir docs\html\en copy /V /Y ..\..\..\doc\html\* docs\html\en\. +copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" docs\. del docs.zip 7z a -y docs.zip docs diff --git a/src/Signing/sign_test.bat b/src/Signing/sign_test.bat index 14d6888b..3344d211 100644 --- a/src/Signing/sign_test.bat +++ b/src/Signing/sign_test.bat @@ -25,7 +25,6 @@ cd "..\Release\Setup Files\" copy ..\..\LICENSE . copy ..\..\License.txt . copy ..\..\NOTICE . -copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" . del *.xml copy /V /Y ..\..\..\Translations\*.xml . @@ -33,6 +32,7 @@ copy /V /Y ..\..\..\Translations\*.xml . rmdir /S /Q docs mkdir docs\html\en copy /V /Y ..\..\..\doc\html\* docs\html\en\. +copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" docs\. del docs.zip 7z a -y docs.zip docs diff --git a/src/Signing/sign_test_debug.bat b/src/Signing/sign_test_debug.bat index 79329283..92b04c15 100644 --- a/src/Signing/sign_test_debug.bat +++ b/src/Signing/sign_test_debug.bat @@ -8,8 +8,9 @@ set SHA256PFXPASSWORD=idrix set SHA256PFXCA=TestCertificate\idrix_SHA256TestRootCA.crt set SIGNINGPATH=%~dp0 +cd %SIGNINGPATH% -call "..\..\..\doc\chm\create_chm.bat" +call "..\..\doc\chm\create_chm.bat" cd %SIGNINGPATH% @@ -24,7 +25,6 @@ cd "..\Debug\Setup Files\" copy ..\..\LICENSE . copy ..\..\License.txt . copy ..\..\NOTICE . -copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" . del *.xml copy /V /Y ..\..\..\Translations\*.xml . @@ -32,6 +32,7 @@ copy /V /Y ..\..\..\Translations\*.xml . rmdir /S /Q docs mkdir docs\html\en copy /V /Y ..\..\..\doc\html\* docs\html\en\. +copy "..\..\..\doc\chm\VeraCrypt User Guide.chm" docs\. del docs.zip 7z a -y docs.zip docs |