Skip to content

Commit

Permalink
Use project.file to get correct path
Browse files Browse the repository at this point in the history
  • Loading branch information
kotarak committed Aug 22, 2010
1 parent 51e5248 commit c5c0e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,13 @@ project(':vim') {
// The Vim files:
[ 'autoload', 'indent', 'syntax', 'ftdetect', 'ftplugin', 'plugin' ].each {
File subDir = new File(installDir, it)
installFiles file(it), '**/*.vim', subDir
installFiles project.file(it), '**/*.vim', subDir
}

// The Docs and other text files:
[ 'doc', 'ftplugin/clojure' ].each {
File subDir = new File(installDir, it)
installFiles file(it), '**/*.txt', subDir
installFiles project.file(it), '**/*.txt', subDir
}
}
}
Expand Down

0 comments on commit c5c0e18

Please sign in to comment.