This is an automated email from the ASF dual-hosted git repository.
bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 18ceb28 Fix spacing in clang-analyzer.sh script (#7480)
18ceb28 is described below
commit 18ceb283a348dca5a92d613124cd9b553225feb5
Author: Brian Neradt <[email protected]>
AuthorDate: Wed Feb 10 12:46:30 2021 -0600
Fix spacing in clang-analyzer.sh script (#7480)
Co-authored-by: bneradt <[email protected]>
---
ci/jenkins/bin/clang-analyzer.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ci/jenkins/bin/clang-analyzer.sh b/ci/jenkins/bin/clang-analyzer.sh
index 5704fd8..5334b98 100755
--- a/ci/jenkins/bin/clang-analyzer.sh
+++ b/ci/jenkins/bin/clang-analyzer.sh
@@ -47,7 +47,7 @@ if [ "${JOB_NAME#*-github}" != "${JOB_NAME}" ]; then
ATS_BRANCH="github"
if [ -w "${OUTPUT_BASE}/${ATS_BRANCH}" ]; then
output="${OUTPUT_BASE}/${ATS_BRANCH}/${ghprbPullId}"
- [ ! -d "${output}"] && mkdir "${output}"
+ [ ! -d "${output}" ] && mkdir "${output}"
fi
github_pr=" PR #${ghprbPullId}"
results_url="https://ci.trafficserver.apache.org/clang-analyzer/${ATS_BRANCH}/${ghprbPullId}/"