You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by bb...@apache.org on 2021/02/26 17:17:45 UTC

[geode-native] branch develop updated: Remove debugging statements

This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 163d3fc  Remove debugging statements
163d3fc is described below

commit 163d3fce0df38c4dd825180536bff6145ac36f76
Author: Blake Bender <bb...@vmware.com>
AuthorDate: Fri Feb 26 09:17:11 2021 -0800

    Remove debugging statements
---
 ci/set-pipeline.sh | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/ci/set-pipeline.sh b/ci/set-pipeline.sh
index eff03b1..4c1ad48 100755
--- a/ci/set-pipeline.sh
+++ b/ci/set-pipeline.sh
@@ -72,13 +72,9 @@ target=${target:-default}
 output=${output:-$(mktemp -d)}
 
 branch=${branch:-$(git rev-parse --abbrev-ref HEAD)}
-echo "branch set to ${branch}"
 git_tracking_branch=${git_tracking_branch:-$(git for-each-ref --format='%(upstream:short)' $(git symbolic-ref -q HEAD))}
-echo "git_tracking_branch set to ${git_tracking_branch}"
 git_remote=${git_remote:-$(echo ${git_tracking_branch} | cut -d/ -f1)}
-echo "git_remote set to ${git_remote}"
 git_repository_url=${git_repository_url:-$(git remote get-url ${git_remote})}
-echo "git_repository_url set to ${git_repository_url}"
 
 if [[ ${git_repository_url} =~ ^((https|git)(:\/\/|@)github\.com[\/:])([^\/:]+)\/(.+)[\.git]?$ ]]; then
   github_owner=${github_owner:-${BASH_REMATCH[4]}}