From bbc69cdfa2cc0354a4d18a476a609d37937cd7c9 Mon Sep 17 00:00:00 2001 From: Dmitriy Nikiforov Date: Mon, 14 Aug 2017 22:27:20 +0300 Subject: [PATCH] Fix 'publish' to search for libasan only for current architecture Change-Id: I83312c2a88798a54e2623e48ac5eddf9b614b0a7 --- infra/commands/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/commands/publish.sh b/infra/commands/publish.sh index 6929512..816402b 100755 --- a/infra/commands/publish.sh +++ b/infra/commands/publish.sh @@ -123,7 +123,7 @@ for debug_rpm in $(find "${TARGET_DIR}/${ARCH}/rpm" -name "*-debug*-*.rpm"); do done if (( WITH_ASAN == 1 )); then - asan_rpm="$(find ${GBS_ROOT}/local/cache -name 'libasan-*.rpm')" + asan_rpm="$(find ${GBS_ROOT}/local/cache -name 'libasan-*.${ARCH}.rpm')" echo "sdb push ${asan_rpm} ${debug_rpm_dir}" ${SDB_CMD} push "${asan_rpm}" ${debug_rpm_dir} >/dev/null fi -- 2.7.4