Skip to content

Commit

Permalink
fix clojure precedence
Browse files Browse the repository at this point in the history
over pom.xml
  • Loading branch information
tj committed Jan 1, 2018
1 parent b5b6a9e commit 2fdb36e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config.go
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ func (c *Config) inferRuntime() error {
switch {
case util.Exists("main.go"):
golang(c)
case util.Exists("project.clj"):
clojureLein(c)
case util.Exists("pom.xml"):
javaMaven(c)
case util.Exists("build.gradle"):
javaGradle(c)
case util.Exists("project.clj"):
clojureLein(c)
case util.Exists("main.cr"):
crystal(c)
case util.Exists("package.json"):
Expand Down

0 comments on commit 2fdb36e

Please sign in to comment.