Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
fix local path
Browse files Browse the repository at this point in the history
  • Loading branch information
Robey Pointer committed Mar 31, 2012
1 parent 71ce329 commit 968557c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/com/twitter/sbt/DefaultRepos.scala
Expand Up @@ -77,7 +77,7 @@ object DefaultRepos extends Plugin with Environmentalist {
Seq("proxy-repo" at url)
} getOrElse {
resolvers ++ defaultResolvers
}) ++ Seq(Resolver.file("local", localRepo)(Resolver.mavenStylePatterns))
}) ++ Seq("local" at ("file:" + localRepo.getAbsolutePath))
},

// don't add any special resolvers.
Expand Down

0 comments on commit 968557c

Please sign in to comment.