From: Dmitriy Nikiforov Date: Mon, 14 Aug 2017 19:27:20 +0000 (+0300) Subject: Fix 'publish' to search for libasan only for current architecture X-Git-Tag: Protex-check-11102017~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F53%2F144153%2F5;p=tools%2Ffuzz-testing.git Fix 'publish' to search for libasan only for current architecture Change-Id: I83312c2a88798a54e2623e48ac5eddf9b614b0a7 --- 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