Skip to content

Commit

Permalink
Split out nailgun client distribution
Browse files Browse the repository at this point in the history
This should take care for easy installation. Just unzip
the zip file into your .vim. That's it. The nailgun-client
will go separate.
Fixes #33
  • Loading branch information
kotarak committed Jun 30, 2010
1 parent 164d5de commit 79a2cbc
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions build.gradle
Expand Up @@ -49,11 +49,19 @@ task vimZip(type: Zip) {
include 'ftplugin/**/*'
include 'indent/**/*'
include 'syntax/**/*'
include 'ngclient/**/*'
include 'LICENSE.txt'
include 'README.txt'
include 'Makefile'
include 'ng.exe'
}
}

task nailgunClientZip(type: Zip) {
archiveName = "vimclojure-nailgun-client.zip"
into("vimclojure-nailgun-client") {
from('.') {
include "ngclient/**/*"
include "Makefile"
include "ng.exe"
}
}
}

Expand Down

0 comments on commit 79a2cbc

Please sign in to comment.