mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-24 08:44:46 +00:00
updated package.bat to not include the automation folder.
This commit is contained in:
parent
c9fcde3bbb
commit
c702944d46
3 changed files with 5 additions and 3 deletions
|
@ -65,7 +65,7 @@ namespace NzbDrone.Common
|
||||||
report.Stack = logEvent.Exception.StackTrace;
|
report.Stack = logEvent.Exception.StackTrace;
|
||||||
report.ExceptionMessage = logEvent.Exception.Message;
|
report.ExceptionMessage = logEvent.Exception.Message;
|
||||||
report.Logger = logEvent.LoggerName;
|
report.Logger = logEvent.LoggerName;
|
||||||
report.Type = logEvent.Exception.GetType().Name;
|
report.Type = logEvent.Exception.GetType().FullName;
|
||||||
|
|
||||||
RestProvider.PostData(EXCEPTION_URL, report);
|
RestProvider.PostData(EXCEPTION_URL, report);
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,7 @@ namespace NzbDrone.Core.Test.Integeration
|
||||||
_kernel.Bind<IDatabase>().ToConstant(Db);
|
_kernel.Bind<IDatabase>().ToConstant(Db);
|
||||||
|
|
||||||
Mocker.GetMock<ConfigProvider>().SetupGet(s => s.ServiceRootUrl)
|
Mocker.GetMock<ConfigProvider>().SetupGet(s => s.ServiceRootUrl)
|
||||||
.Returns("http://stage.services.nzbdrone.com");
|
.Returns("http://services.nzbdrone.com");
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
SET PACKAGEROOT=_rawPackage
|
SET PACKAGEROOT=_rawPackage
|
||||||
SET TARGET=%PACKAGEROOT%\NzbDrone
|
SET TARGET=%PACKAGEROOT%\NzbDrone
|
||||||
|
|
||||||
rd %TARGET% /S /Q
|
rd %PACKAGEROOT% /S /Q
|
||||||
del nzbdrone*.zip /Q /F
|
del nzbdrone*.zip /Q /F
|
||||||
|
|
||||||
|
|
||||||
|
@ -50,6 +50,8 @@ del Mvc*.pdb /Q /F /S
|
||||||
del *debug.js /Q /F /S
|
del *debug.js /Q /F /S
|
||||||
del *-vsdoc.js /Q /F /S
|
del *-vsdoc.js /Q /F /S
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
..\Libraries\7zip\7za.exe a -tzip ..\NzbDrone.zip *
|
..\Libraries\7zip\7za.exe a -tzip ..\NzbDrone.zip *
|
||||||
|
|
||||||
CD ..
|
CD ..
|
Loading…
Reference in a new issue