Skip to content

Commit

Permalink
Fix broken install task due to module renaming
Browse files Browse the repository at this point in the history
We renamed the core library module to ‘library’, but since this becomes the artifact name, this broke everything horribly. I renamed the parent project to `rxandroid-project` and the library module back to `rxandroid`
  • Loading branch information
mttkay committed Nov 12, 2014
1 parent 7e4b433 commit 6516ca4
Show file tree
Hide file tree
Showing 49 changed files with 4 additions and 3 deletions.
File renamed without changes.
3 changes: 2 additions & 1 deletion samples-build-wrapper/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
apply plugin: 'java'
apply plugin: 'maven'

tasks.assemble.doLast {
tasks.install.doLast {
def androidHome = System.getenv("ANDROID_HOME")
if (androidHome) {
println "Found ANDROID_HOME at $androidHome"
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name='rxandroid'
include 'library', 'samples-build-wrapper'
rootProject.name='rxandroid-project'
include 'rxandroid', 'samples-build-wrapper'

0 comments on commit 6516ca4

Please sign in to comment.