Skip to content

Commit b70d8ac

Browse files
committed
just add the plugin dll itself to the release zip and no folders
1 parent 572e0cb commit b70d8ac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ after_build:
4545
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v140_xp") {
4646
if($env:PLATFORM_INPUT -eq "x64"){
4747
$ZipFileName = "NppExport_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
48-
7z a $ZipFileName vs7project\$env:PLATFORM_INPUT\$env:CONFIGURATION\*.dll
48+
7z a $ZipFileName "$($env:APPVEYOR_BUILD_FOLDER)\vs7project\$env:PLATFORM_INPUT\$env:CONFIGURATION\*.dll"
4949
}
5050
if($env:PLATFORM_INPUT -eq "Win32"){
5151
$ZipFileName = "NppExport_$($env:APPVEYOR_REPO_TAG_NAME)_x86.zip"
52-
7z a $ZipFileName vs7project\$env:CONFIGURATION\*.dll
52+
7z a $ZipFileName "$($env:APPVEYOR_BUILD_FOLDER)\vs7project\$env:CONFIGURATION\*.dll"
5353
}
5454
}
5555

0 commit comments

Comments
 (0)