Aura.Login.LoginServer.RunUpdate C# (CSharp) Method

RunUpdate() private method

private RunUpdate ( string updateFile ) : void
updateFile string
return void
		private void RunUpdate(string updateFile)
		{
			if (LoginServer.Instance.Database.CheckUpdate(updateFile))
				return;

			Log.Info("Update '{0}' found, executing...", updateFile);

			LoginServer.Instance.Database.RunUpdate(updateFile);
		}