Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 785965, fix up key handling in production, r=hwine
Browse files Browse the repository at this point in the history
  • Loading branch information
nthomas-mozilla committed Oct 9, 2012
1 parent fb7cd2e commit bdce171
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/release/stage-tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ def makeIndexFiles(productName, version, buildNumber, stageServer,
indexFile.write(indexFileTemplate % {'version': version})
indexFile.flush()

scp(indexFile.name, '%s@%s:%s/index.html' % (stageUsername, stageServer, candidates_dir))
scp(indexFile.name, '%s@%s:%s/index.html' % (stageUsername, stageServer, candidates_dir),
sshKey=stageSshKey)
run_remote_cmd(['find', candidates_dir, '-mindepth', '1', '-type', 'd', '-exec', 'cp', '-pv', '%s/index.html' % candidates_dir, '{}', '\\;'],
server=stageServer, username=stageUsername, sshKey=stageSshKey)

Expand Down

0 comments on commit bdce171

Please sign in to comment.