From 60b6c21f15ee90bcaa56ffc8f312217d7671b1e5 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 16 Oct 2017 12:10:30 -0400 Subject: [PATCH] Add missing semicolons --- TGServerService/Repository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TGServerService/Repository.cs b/TGServerService/Repository.cs index 09e867b57c..1165777e83 100644 --- a/TGServerService/Repository.cs +++ b/TGServerService/Repository.cs @@ -18,7 +18,7 @@ namespace TGServerService const string CachedTGS3SettingsPath = "TGS3.json"; const string RepoErrorUpToDate = "Already up to date!"; const string SSHPushRemote = "ssh_push_target"; - const string RepoKeyDir = "RepoKey/" + const string RepoKeyDir = "RepoKey/"; const string PrivateKeyPath = RepoKeyDir + "private_key.txt"; const string PublicKeyPath = RepoKeyDir + "public_key.txt"; const string PRJobFile = "prtestjob.json"; @@ -146,7 +146,7 @@ namespace TGServerService void InitRepo() { - Directory.CreateDirectory(RepoKeyDir) + Directory.CreateDirectory(RepoKeyDir); if(Exists()) UpdateInterfaceDll(false); if(LoadRepo() == null)