diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2015-11-12 10:15:12 +0200 |
---|---|---|
committer | Sauli Tähkäpää <sauli@vaadin.com> | 2015-11-12 10:15:59 +0200 |
commit | 7b30e157d617cf31359e7d0681fa2c9b0e629ecf (patch) | |
tree | d63152778c080419887c480cd5531d4837eb0f01 /tasks | |
parent | 912a825434f17d80438982b2775442f40c111913 (diff) | |
download | vaadin-core-7b30e157d617cf31359e7d0681fa2c9b0e629ecf.tar.gz vaadin-core-7b30e157d617cf31359e7d0681fa2c9b0e629ecf.zip |
Remove unused symlink creation.
Diffstat (limited to 'tasks')
-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) { |