Skip to content

Commit ce3b099

Browse files
committed
Fix release zip package
Closes dail8859#76
1 parent 290e89e commit ce3b099

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ Scripts can also register functions to be called when certain events occur, such
3131
The full API documentation can be found [here](http://dail8859.github.io/LuaScript/). Also be sure to check out the [examples](/examples/) directory.
3232

3333
## Development
34-
The code has been developed using MSVC 2017. To compile the code:
34+
The code has been developed using Visual Studio 2017. To compile the code:
3535

3636
1. Open the `LuaScript.sln` file
3737
1. Press `F7` and that's it!
3838

39-
For convenience, MSVC automatically copies the DLL into the Notepad++ plugin directory.
39+
For convenience, Visual Studio automatically copies the DLL into the Notepad++ plugin directory.
4040

4141
## License
4242
This code is released under the [GNU General Public License version 2](http://www.gnu.org/licenses/gpl-2.0.txt).

appveyor.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,13 @@ after_build:
3535
Push-AppveyorArtifact "$($BuildPath)\LuaScript.dll" -FileName LuaScript.dll
3636
3737
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release") {
38-
mkdir LuaScript
39-
Move-Item -Path "$($BuildPath)\LuaScript.dll" -Destination .\LuaScript
40-
if ($env:BUILD_PLATFORM -eq "x64"){
38+
if ($env:BUILD_PLATFORM -eq "x64") {
4139
$ZipFileName = "LuaScript_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
4240
}
43-
if ($env:BUILD_PLATFORM -eq "Win32"){
41+
if ($env:BUILD_PLATFORM -eq "Win32") {
4442
$ZipFileName = "LuaScript_$($env:APPVEYOR_REPO_TAG_NAME).zip"
4543
}
46-
7z a $ZipFileName .\LuaScript
44+
7z a $ZipFileName "$($BuildPath)\LuaScript.dll"
4745
}
4846
4947
artifacts:

0 commit comments

Comments
 (0)