From aad21830bb27ad6e5a27bb81c4c0401370113bd6 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Wed, 1 Feb 2012 15:36:55 +0100 Subject: [PATCH] Remove global 'clean' from import-into-eclipse.sh User may already have run `gradle build` successfully. This change ensures that we do not unnecessarily remove these output directories in order to avoid forcing the user to rebuild. --- import-into-eclipse.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/import-into-eclipse.sh b/import-into-eclipse.sh index c8c87c04c6..c977c73618 100755 --- a/import-into-eclipse.sh +++ b/import-into-eclipse.sh @@ -27,7 +27,7 @@ read # - generates metadata for all subprojects # - skips metadata gen for the root project (-x :eclipse) to work # around Eclipse's inability to import hierarchical project structures -COMMAND="./gradlew clean cleanEclipse :spring-oxm:compileTestJava eclipse -x :eclipse" +COMMAND="./gradlew cleanEclipse :spring-oxm:compileTestJava eclipse -x :eclipse" cat <