summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-08-30 04:39:20 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-08-30 04:39:20 -0700
commit778edaaf7bec83a28ec669521d6d679a005f1040 (patch)
tree2c4c76b6d46682f781aa9c6c972b5b6797d2b66b
parent3c7b0620f3233f0ec77eea3a8b9e5d9d429ca94e (diff)
parentc516acd677c39b62cc2f7519714797de968b9fcb (diff)
downloadscala-778edaaf7bec83a28ec669521d6d679a005f1040.tar.gz
scala-778edaaf7bec83a28ec669521d6d679a005f1040.tar.bz2
scala-778edaaf7bec83a28ec669521d6d679a005f1040.zip
Merge pull request #1210 from jsuereth/fix/SI-6233
Fix crasher from bug in maven ant tasks. Yippie.
-rw-r--r--build.xml2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index c378bc7ad1..99b68ced84 100644
--- a/build.xml
+++ b/build.xml
@@ -281,6 +281,8 @@ INITIALISATION
<!-- Resolve maven dependencies -->
<target name="init.maven.jars" depends="init.maven.tasks">
+ <!-- This target has an issue where if the user directory does not exist, we BOMB. ugh. -->
+ <mkdir dir="${user.home}/.m2/repository"/>
<artifact:dependencies pathId="dependency.classpath" filesetId="dependency.fileset">
<!--<dependency groupId="com.typesafe" artifactId="config" version="0.4.0"/>-->
</artifact:dependencies>