File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ class DocsCLI < Thor
191191 puts '[S3] Begin syncing.'
192192 docs . each do |doc |
193193 puts "[S3] Syncing #{ doc . path } ..."
194- cmd = "aws s3 sync #{ File . join ( Docs . store_path , doc . path ) } s3://devdocs-staging- documents/#{ doc . path } --delete --profile devdocs"
194+ cmd = "aws s3 sync #{ File . join ( Docs . store_path , doc . path ) } s3://devdocs-documents/#{ doc . path } --delete --profile devdocs"
195195 cmd << ' --dryrun' if options [ :dryrun ]
196196 system ( cmd )
197197 end
@@ -204,7 +204,7 @@ class DocsCLI < Thor
204204 docs . each do |doc |
205205 filename = "#{ doc . path } .tar.gz"
206206 print "[S3 bundle] Uploading #{ filename } ..."
207- cmd = "aws s3 cp #{ File . join ( Docs . store_path , filename ) } s3://devdocs-staging- downloads/bundles/#{ filename } --profile devdocs"
207+ cmd = "aws s3 cp #{ File . join ( Docs . store_path , filename ) } s3://devdocs-downloads/bundles/#{ filename } --profile devdocs"
208208 cmd << ' --dryrun' if options [ :dryrun ]
209209 system ( cmd )
210210 end
You can’t perform that action at this time.
0 commit comments