From 57ceef76856301320100022aac7430e28202d508 Mon Sep 17 00:00:00 2001 From: Tim Wiel Date: Wed, 22 Sep 2021 16:25:15 +1200 Subject: [PATCH] Minor comment change to better reflect code functionality --- Puc/v4p11/Vcs/GitLabApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Puc/v4p11/Vcs/GitLabApi.php b/Puc/v4p11/Vcs/GitLabApi.php index a4bc46e..22089c5 100644 --- a/Puc/v4p11/Vcs/GitLabApi.php +++ b/Puc/v4p11/Vcs/GitLabApi.php @@ -372,7 +372,7 @@ if ( !class_exists('Puc_v4p11_Vcs_GitLabApi', false) ): $updateSource = $this->getLatestTag(); } - //3. Do branch if all else fails + //3. Do branch (including master if no latest tag found) if branch is specified OR nothing at all specified if ( empty( $updateSource ) ) { $updateSource = $this->getBranch($configBranch); }