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

Commit 2c8a83a

Browse files
committed
Remove --cf-invalidate arguments that do nothing
1 parent a89b08f commit 2c8a83a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

master/master.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,13 +1256,13 @@ def finish_dist(f, local_dist_dir, dist_subdirs, s3_addy, remote_dist_dir, compo
12561256
if upload:
12571257
# Upload everything to S3, first to the archive
12581258
s3dir = s3_addy + "/" + remote_dist_dir + "/`date +'%Y-%m-%d'`/"
1259-
s3cmd = "s3cmd put -P --cf-invalidate --no-progress " + final_dist_dir + "/* " + s3dir
1259+
s3cmd = "s3cmd put -P --no-progress " + final_dist_dir + "/* " + s3dir
12601260
f.addStep(MasterShellCommand(name="s3 archive upload",
12611261
command=["sh", "-c", s3cmd]))
12621262

12631263
# Then to the primary dist directory
12641264
s3dir = s3_addy + "/" + remote_dist_dir + "/"
1265-
s3cmd = "s3cmd put -P --cf-invalidate --no-progress " + final_dist_dir + "/* " + s3dir
1265+
s3cmd = "s3cmd put -P --no-progress " + final_dist_dir + "/* " + s3dir
12661266
f.addStep(MasterShellCommand(name="s3 primary upload",
12671267
command=["sh", "-c", s3cmd]))
12681268

@@ -1357,7 +1357,7 @@ def packaging_dist_buildfactory(platform, channel_label):
13571357
flunkOnFailure=False))
13581358

13591359
# Require a manual upload for the stable channel
1360-
upload = channel != "stable"
1360+
upload = channel_label != "stable"
13611361
return finish_dist(f, local_dist_dir, dist_platforms, s3_addy, "dist", "rust", channel_label, upload)
13621362

13631363
c['builders'] = []

0 commit comments

Comments
 (0)