Skip to content

Commit c51c6cd

Browse files
install-deps: fix a log line to use ci_debug
The log line was doing exactly what ci_debug does, so switch it to use that function. Signed-off-by: John Mulligan <[email protected]>
1 parent 912e1a8 commit c51c6cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install-deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function install_pkg_on_ubuntu {
134134
fi
135135
if test -n "$missing_pkgs"; then
136136
local shaman_url="https://shaman.ceph.com/api/repos/${project}/master/${sha1}/ubuntu/${codename}/repo"
137-
in_jenkins && echo -n "CI_DEBUG: Downloading $shaman_url ... "
137+
ci_debug "Downloading $shaman_url ... "
138138
$SUDO curl --silent --fail --write-out "%{http_code}" --location $shaman_url --output /etc/apt/sources.list.d/$project.list
139139
$SUDO env DEBIAN_FRONTEND=noninteractive apt-get update -y -o Acquire::Languages=none -o Acquire::Translation=none || true
140140
$SUDO env DEBIAN_FRONTEND=noninteractive apt-get install --allow-unauthenticated -y $missing_pkgs

0 commit comments

Comments
 (0)