File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
zorg/buildbot/builders/sanitizers Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ function cmake() {
8282}
8383
8484function rm_dirs {
85- while ! rm -rf $@ ; do sleep 1; done
85+ while ! rm -rf " $@ " ; do sleep 1; done
8686}
8787
8888function cleanup() {
@@ -94,7 +94,7 @@ function cleanup() {
9494 fi
9595 # Workaround the case when a new unittest was reverted, but incremental build continues to execute the leftover binary.
9696 find -path ./llvm-project -prune -o -executable -type f -path ' *unittests*' -print -exec rm -f {} \;
97- du -hs * | sort -h
97+ du -hs ./ * | sort -h
9898}
9999
100100function clobber {
@@ -104,9 +104,9 @@ function clobber {
104104 echo " Clobbering is supported only on buildbot only!"
105105 exit 1
106106 fi
107- rm_dirs *
107+ rm_dirs ./ *
108108 else
109- BUILDBOT_BUILDERNAME=1 cleanup $@
109+ BUILDBOT_BUILDERNAME=1 cleanup " $@ "
110110 fi
111111}
112112
@@ -204,7 +204,7 @@ function build_clang_at_release_tag {
204204 then
205205 echo " @@@BUILD_STEP using pre-built stage1 clang at r${host_clang_revision} @@@"
206206 else
207- BUILDBOT_MONO_REPO_PATH= BUILDBOT_REVISION=" ${host_clang_revision} " buildbot_update
207+ BUILDBOT_MONO_REPO_PATH=" " BUILDBOT_REVISION=" ${host_clang_revision} " buildbot_update
208208
209209 rm -rf ${STAGE1_DIR}
210210 echo @@@BUILD_STEP build stage1 clang at $host_clang_revision @@@
You can’t perform that action at this time.
0 commit comments