Merge pull request #680 from tgstation/Cyberboss-patch-1

Fix typo
This commit is contained in:
Jordan Brown
2018-09-18 23:51:19 -04:00
committed by GitHub
@@ -388,7 +388,7 @@ namespace Tgstation.Server.Host.Controllers
string description = null;
if (model.UpdateFromOrigin == true)
if (model.Reference != null)
description = String.Format(CultureInfo.InvariantCulture, "Fetch and hard reset repsitory to origin/{0}", model.Reference);
description = String.Format(CultureInfo.InvariantCulture, "Fetch and hard reset repository to origin/{0}", model.Reference);
else if (model.CheckoutSha != null)
description = String.Format(CultureInfo.InvariantCulture, "Fetch and checkout {0} in repository", model.CheckoutSha);
else