diff --git a/grunt/config/shell.js b/grunt/config/shell.js index 83626bcc1..49497e7b4 100644 --- a/grunt/config/shell.js +++ b/grunt/config/shell.js @@ -92,7 +92,7 @@ module.exports = function (grunt) { command: function () { function createUploadCommand (version) { return ['mv dist ' + version, - 'scp -i -oHostKeyAlgorithms=+ssh-dss ~/.ssh/fuelcdn -r "' + version + '"/ ' + + 'scp -i ~/.ssh/fuelcdn -oHostKeyAlgorithms=+ssh-dss -r "' + version + '"/ ' + '<%= cdnLoginFile.user %>' + '@' + '<%= cdnLoginFile.server %>' + ':' + '<%= cdnLoginFile.folder %>', 'mv "' + version + '" dist', 'echo "Done uploading files."'].join(' && ');