mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-25 22:17:51 +01:00
Update ops now ignore changelog errors (#111)
* Update ops now ignore changelog errors * >tabs * >still tabs * >tabs for days
This commit is contained in:
@@ -68,22 +68,16 @@ namespace TGServerService
|
||||
}
|
||||
|
||||
GenerateChangelog(out res);
|
||||
if (res != null)
|
||||
return res;
|
||||
|
||||
if (push_changelog_if_enabled && SSHAuth())
|
||||
if (res == null && push_changelog_if_enabled && SSHAuth())
|
||||
{
|
||||
res = Commit();
|
||||
if (res != null)
|
||||
return res;
|
||||
res = Push();
|
||||
if (res != null)
|
||||
return res;
|
||||
if (res == null)
|
||||
res = Push();
|
||||
}
|
||||
|
||||
if (!Compile(true))
|
||||
return "Compilation could not be started!";
|
||||
return null;
|
||||
return res;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user