Skip to content

Commit

Permalink
Fix error on first build
Browse files Browse the repository at this point in the history
  • Loading branch information
LunNova committed Sep 11, 2014
1 parent 1e0ade9 commit 054f69a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies {

jar {
duplicatesStrategy = 'exclude'
from((configurations.runtime - configurations.provided).collect { it.isDirectory() ? it : zipTree(it) }) {
from((configurations.runtime - configurations.provided).filter{it.exists()}.collect { it.isDirectory() ? it : zipTree(it) }) {
exclude "META-INF/**"
exclude "mcmod.info"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Thu Sep 11 01:01:51 BST 2014
#Thu Sep 11 03:36:50 BST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 054f69a

Please sign in to comment.