mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 13:45:02 +00:00
Fixed: (Windows) clean up extraneous files in build folder during installation
This commit is contained in:
parent
f30ae69c10
commit
7dd64d843a
3 changed files with 5 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -141,3 +141,4 @@ output/*
|
||||||
_start
|
_start
|
||||||
|
|
||||||
src/.idea/
|
src/.idea/
|
||||||
|
/distribution/windows/setup/output/*
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
REM SET BUILD_NUMBER=1
|
SET BUILD_NUMBER=1
|
||||||
REM SET BRANCH=develop
|
SET BRANCH=develop
|
||||||
echo ##teamcity[progressStart 'Building setup file']
|
echo ##teamcity[progressStart 'Building setup file']
|
||||||
inno\ISCC.exe sonarr.iss
|
inno\ISCC.exe sonarr.iss
|
||||||
echo ##teamcity[progressFinish 'Building setup file']
|
echo ##teamcity[progressFinish 'Building setup file']
|
||||||
|
|
|
@ -37,6 +37,7 @@ Compression=lzma2/normal
|
||||||
AppContact={#ForumsURL}
|
AppContact={#ForumsURL}
|
||||||
VersionInfoVersion={#BuildNumber}
|
VersionInfoVersion={#BuildNumber}
|
||||||
SetupLogging=yes
|
SetupLogging=yes
|
||||||
|
OutputDir=output
|
||||||
|
|
||||||
[Languages]
|
[Languages]
|
||||||
Name: "english"; MessagesFile: "compiler:Default.isl"
|
Name: "english"; MessagesFile: "compiler:Default.isl"
|
||||||
|
@ -59,6 +60,7 @@ Name: "{userstartup}\{#AppName}"; Filename: "{app}\Sonarr.exe"; WorkingDir: "{ap
|
||||||
|
|
||||||
[InstallDelete]
|
[InstallDelete]
|
||||||
Name: "{commonappdata}\NzbDrone\bin"; Type: filesandordirs
|
Name: "{commonappdata}\NzbDrone\bin"; Type: filesandordirs
|
||||||
|
Name: "{app}"; Type: filesandordirs
|
||||||
|
|
||||||
[Run]
|
[Run]
|
||||||
Filename: "{app}\Sonarr.Console.exe"; StatusMsg: "Removing previous Windows Service"; Parameters: "/u"; Flags: runhidden waituntilterminated;
|
Filename: "{app}\Sonarr.Console.exe"; StatusMsg: "Removing previous Windows Service"; Parameters: "/u"; Flags: runhidden waituntilterminated;
|
||||||
|
|
Loading…
Reference in a new issue