Skip to content

Commit 87df822

Browse files
authored
[AMDGPU] Fix syntax error in run_command (#370)
1 parent 377784a commit 87df822

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zorg/buildbot/builders/annotated/amdgpu-offload-cmake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def main(argv):
1818
# We have to "hard clean" the build directory, since we use a CMake cache
1919
# If we do not do this, the resident config will take precedence and changes
2020
# to the cache file are ignored.
21-
run_command("rm -r *")
21+
run_command(["rm", "-r *"])
2222

2323
with step("cmake", halt_on_fail=True):
2424
# TODO make the name of the cache file an argument to the script.

0 commit comments

Comments
 (0)