diff options
-rw-r--r-- | tasks/zip.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tasks/zip.js b/tasks/zip.js index 3ef9bf8..ddd9a73 100644 --- a/tasks/zip.js +++ b/tasks/zip.js @@ -50,10 +50,6 @@ gulp.task('zip:upload', ['stage:zip'], function(done) { }); gulp.task('zip:update-references', ['zip:upload'], function(done) { - var dst = computeDestination(); - var latest = '/var/www/vaadin/download/elements/latest/vaadin-elements-latest.zip'; - var cmd = 'rm -f ' + latest + '; ln -s ' + dst + ' ' + latest; - common.ssh(user, host, cmd); if(args.release) { common.ssh(user, host, "sed -i '1i elements/" + majorMinorVersion + '/' + version + "' " + args.zipDestination + 'VERSIONS', done); } else if(args.preRelease) { |