Skip to content

Commit

Permalink
zipfiles created by appveyor should not contain paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpaulrichter committed Nov 20, 2017
1 parent 2c6e94a commit bc502f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -41,11 +41,11 @@ after_build:
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v141_xp") {
if($env:PLATFORM -eq "x64"){
$ZipFileName = "nppcrypt_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
7z a $ZipFileName bin\nppcrypt\$env:PLATFORM\$env:CONFIGURATION\nppcrypt.dll
7z a $ZipFileName .\bin\nppcrypt\$env:PLATFORM\$env:CONFIGURATION\nppcrypt.dll
}
if($env:PLATFORM -eq "x86"){
$ZipFileName = "nppcrypt_$($env:APPVEYOR_REPO_TAG_NAME)_x86.zip"
7z a $ZipFileName bin\nppcrypt\$env:PLATFORM\$env:CONFIGURATION\nppcrypt.dll
7z a $ZipFileName .\bin\nppcrypt\$env:PLATFORM\$env:CONFIGURATION\nppcrypt.dll
}
}
Expand Down

0 comments on commit bc502f8

Please sign in to comment.