This is an automated email from the ASF dual-hosted git repository.
jiafengzheng pushed a commit to branch env_fix
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/env_fix by this push:
new 74633004d4 1
74633004d4 is described below
commit 74633004d43e126c8de31e7d65aaeb814e83f2b1
Author: jiafeng.zhang <[email protected]>
AuthorDate: Wed Aug 30 13:28:52 2023 +0800
1
---
env.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/env.sh b/env.sh
index 9fdebccaba..82dcfc51ca 100755
--- a/env.sh
+++ b/env.sh
@@ -147,12 +147,12 @@ elif [[ "${DORIS_TOOLCHAIN}" == "clang" ]]; then
covs=()
tmp_file=$(mktemp)
- find "${DORIS_CLANG_HOME}" -name "llvm-cov*" > "$tmp_file"
+ find "${DORIS_CLANG_HOME}" -name "llvm-cov*" > "${tmp_file}"
# Read lines from the temporary file and populate the array
while IFS= read -r line; do
covs+=("$line")
- done < "$tmp_file"
+ done < "${tmp_file}"
if [[ ${#covs[@]} -ge 1 ]]; then
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]