From 86af65c50f553134681cd64a0d74926cb368209c Mon Sep 17 00:00:00 2001 From: aaronchen2k <462826@qq.com> Date: Sat, 18 Jan 2020 10:47:28 +0800 Subject: [PATCH] success to build ci task by using tag like build_#15 --- module/git/model.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/git/model.php b/module/git/model.php index 9731b127ff..18e422cbea 100644 --- a/module/git/model.php +++ b/module/git/model.php @@ -317,7 +317,7 @@ class gitModel extends model */ public function setLogFile($repoId) { - $this->logFile = $this->logRoot . $repoId . 'log'; + $this->logFile = $this->logRoot . $repoId . '.log'; } /** @@ -329,7 +329,7 @@ class gitModel extends model */ public function setTagFile($repoId) { - $this->tagFile = $this->logRoot . $repoId . 'tag'; + $this->tagFile = $this->logRoot . $repoId . '.tag'; } /**