Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit 4ff2904

Browse files
committed
Fix dumb mistake
1 parent 9139ce1 commit 4ff2904

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

master/master.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1428,7 +1428,7 @@ def finish_dist(f, local_dist_dir, dist_subdirs, s3_addy, remote_dist_dir, compo
14281428
# package is produced by all builders and if we don't drop the dupes now
14291429
# then the subsequent 'cp' command to consolidate them will fail.
14301430
non_linux_dist_subdirs = list(dist_subdirs)
1431-
non_linux_dist_subdirs = non_linux_dist_subdirs.remove("linux")
1431+
non_linux_dist_subdirs.remove("linux")
14321432
non_linux_dist_dirs = [(local_dist_dir + "/" + p) for p in non_linux_dist_subdirs]
14331433
rm_dupes_cmd = "find " + " ".join(non_linux_dist_dirs) + " -name rust-src-" + channel + ".tar.gz | xargs rm -f"
14341434
f.addStep(MasterShellCommand(name="removing duplicate source packages",

0 commit comments

Comments
 (0)