Skip to content

Commit

Permalink
Rename ASSET_PATCH_DLL_GET to PACKAGE_PATCH_DLL_GET
Browse files Browse the repository at this point in the history
  • Loading branch information
mazmazz committed Dec 30, 2018
1 parent 941e297 commit e1300d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ environment:
# This is overridden to 1 for release tag builds
ASSET_FILES_OPTIONAL_GET: 0
# For patches, also include the X86/X64 DLLs.
ASSET_PATCH_DLL_GET: 0
PACKAGE_PATCH_DLL_GET: 0
# Delete all asset downloads so they can be redownloaded
ASSET_CLEAN: 0

Expand Down
4 changes: 2 additions & 2 deletions deployer/appveyor/deployer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ if not [%X86_64%] == [1] ( goto X86_INSTALL )

: Extract DLL binaries
7z x -y "%ASSET_ARCHIVE_X64_PATH_LOCAL%" -o"assets\deployer\installer" >null
if [%ASSET_PATCH_DLL_GET%] == [1] (
if [%PACKAGE_PATCH_DLL_GET%] == [1] (
7z x -y "!ASSET_ARCHIVE_X64_PATH_LOCAL!" -o"assets\deployer\patch" >null
)

Expand All @@ -169,7 +169,7 @@ goto EOF

: Extract DLL binaries
7z x -y "%ASSET_ARCHIVE_X86_PATH_LOCAL%" -o"assets\deployer\installer" >null
if [%ASSET_PATCH_DLL_GET%] == [1] (
if [%PACKAGE_PATCH_DLL_GET%] == [1] (
7z x -y "!ASSET_ARCHIVE_X86_PATH_LOCAL!" -o"assets\deployer\patch" >null
)

Expand Down

0 comments on commit e1300d5

Please sign in to comment.