From 3671bd50ec61ebd21a2435f80cd20f7ba501ed2c Mon Sep 17 00:00:00 2001 From: Nathan Cutler Date: Tue, 3 Sep 2019 15:31:26 +0200 Subject: [PATCH] script/ceph-backport.sh: replace : with true (for uniformity) Signed-off-by: Nathan Cutler --- src/script/ceph-backport.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/script/ceph-backport.sh b/src/script/ceph-backport.sh index 1a67c179ef1..e40ee55ccf1 100755 --- a/src/script/ceph-backport.sh +++ b/src/script/ceph-backport.sh @@ -159,7 +159,7 @@ function log { ;; esac if [ "$verbose_only" -a ! "$verbose" ] ; then - : + true else msg="${prefix}${msg}" echo "$msg" >&2 @@ -194,8 +194,8 @@ test "$redmine_key" || failed_required_variable_check redmine_key test "$redmine_user_id" || failed_required_variable_check redmine_user_id test "$github_token" || failed_required_variable_check github_token test "$github_user" || failed_required_variable_check github_user -: "${github_repo:=origin}" -: "${ceph_repo:=upstream}" +true "${github_repo:=origin}" +true "${ceph_repo:=upstream}" redmine_endpoint="https://tracker.ceph.com" github_endpoint="https://github.com/ceph/ceph" original_issue= -- 2.39.5