기획 업데이트가 안되는 문제 확인용 코드 수정
This commit is contained in:
parent
9bf7f2a645
commit
e524aa6419
|
|
@ -97,6 +97,16 @@ namespace Server.Git
|
|||
//암호화
|
||||
ProtocolProcessor.cryptoData = crypto.Compress(excel);
|
||||
|
||||
// 스테이징
|
||||
RepositorySet("add .", repositoryPath);
|
||||
|
||||
// 커밋
|
||||
RepositorySet($"commit -m \"update excel data\"", repositoryPath);
|
||||
|
||||
// 푸시
|
||||
RepositorySet("push origin main", repositoryPath);
|
||||
|
||||
|
||||
logger.Info("version : " + ProtocolProcessor.version);
|
||||
if (ProtocolProcessor.version == "")
|
||||
{
|
||||
|
|
@ -108,15 +118,6 @@ namespace Server.Git
|
|||
Statics.dynamicDataSQL.Update(1, ProtocolProcessor.version);
|
||||
logger.Info("Update version : " + ProtocolProcessor.version);
|
||||
}
|
||||
|
||||
// 스테이징
|
||||
RepositorySet("add .", repositoryPath);
|
||||
|
||||
// 커밋
|
||||
RepositorySet($"commit -m \"update excel data\"", repositoryPath);
|
||||
|
||||
// 푸시
|
||||
RepositorySet("push origin main", repositoryPath);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Reference in New Issue