From 6cf67fd4d9992b328e7a286c703e6739b21f6bf0 Mon Sep 17 00:00:00 2001 From: Michal Svec Date: Mon, 21 Jul 2014 10:24:32 +0200 Subject: [PATCH] Increased verbosity of tag message --- components/Api/ApiService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Api/ApiService.php b/components/Api/ApiService.php index ab0d557..34166d8 100644 --- a/components/Api/ApiService.php +++ b/components/Api/ApiService.php @@ -68,7 +68,7 @@ public function createTag($project, $sourceBranch, $tagName) throw new SvnException("Tag already exists"); } - return $this->helper->createTag($tagName, "Creating: {$tagName}", "branches/{$sourceBranch}"); + return $this->helper->createTag($tagName, "Creating: {$tagName} from {$sourceBranch}", "branches/{$sourceBranch}"); } /**