From f15e0ca8a94cddcf27e3e98a7544425de544f0f3 Mon Sep 17 00:00:00 2001 From: Lucas Russo Date: Mon, 23 Mar 2020 11:54:50 -0300 Subject: [PATCH] ci_deploy.sh: fix generating hashes filepaths for checking easiness --- ci_deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci_deploy.sh b/ci_deploy.sh index 05002f1ba..829ceb32d 100755 --- a/ci_deploy.sh +++ b/ci_deploy.sh @@ -17,8 +17,8 @@ if [ "${DEPLOY}" = "all_binaries" ]; then # Generate hash sums cd dist - md5sum ${TOP}/${RELEASE_DIR}/{*.bin,*.axf} > MD5SUMS - sha1sum ${TOP}/${RELEASE_DIR}/{*.bin,*.axf} > SHA1SUMS + md5sum *.bin *.axf > MD5SUMS + sha1sum *.bin *.axf > SHA1SUMS cd - fi