mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
updated package.bat to not include the automation folder.
This commit is contained in:
parent
c9fcde3bbb
commit
c702944d46
@ -65,7 +65,7 @@ public static void ReportException(LogEventInfo logEvent)
|
||||
report.Stack = logEvent.Exception.StackTrace;
|
||||
report.ExceptionMessage = logEvent.Exception.Message;
|
||||
report.Logger = logEvent.LoggerName;
|
||||
report.Type = logEvent.Exception.GetType().Name;
|
||||
report.Type = logEvent.Exception.GetType().FullName;
|
||||
|
||||
RestProvider.PostData(EXCEPTION_URL, report);
|
||||
}
|
||||
|
@ -28,7 +28,7 @@ public void Setup()
|
||||
_kernel.Bind<IDatabase>().ToConstant(Db);
|
||||
|
||||
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 TARGET=%PACKAGEROOT%\NzbDrone
|
||||
|
||||
rd %TARGET% /S /Q
|
||||
rd %PACKAGEROOT% /S /Q
|
||||
del nzbdrone*.zip /Q /F
|
||||
|
||||
|
||||
@ -50,6 +50,8 @@ del Mvc*.pdb /Q /F /S
|
||||
del *debug.js /Q /F /S
|
||||
del *-vsdoc.js /Q /F /S
|
||||
|
||||
|
||||
|
||||
..\Libraries\7zip\7za.exe a -tzip ..\NzbDrone.zip *
|
||||
|
||||
CD ..
|
Loading…
Reference in New Issue
Block a user