We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b635899 commit 7828802Copy full SHA for 7828802
lib/tasks/docs.thor
@@ -178,7 +178,7 @@ class DocsCLI < Thor
178
puts '[S3] Begin syncing.'
179
docs.each do |doc|
180
puts "[S3] Syncing #{doc.path}..."
181
- cmd = "aws s3 sync #{File.join(Docs.store_path, doc.path)} s3://docs.devdocs.io/#{doc.path} --delete"
+ cmd = "aws s3 sync #{File.join(Docs.store_path, doc.path)} s3://devdocs-assets/#{doc.path} --delete --profile devdocs"
182
cmd << ' --dryrun' if options[:dryrun]
183
system(cmd)
184
end
0 commit comments