From f917213a5b06d72b605fd5127386c09f709ee8c5 Mon Sep 17 00:00:00 2001 From: Chris Price Date: Mon, 1 Feb 2016 21:08:08 -0800 Subject: [PATCH 1/2] (204) Bump version to 1.1.3-SNAPSHOT --- plugin/project.clj | 2 +- support/project.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/project.clj b/plugin/project.clj index 245f2619..ecba5baf 100644 --- a/plugin/project.clj +++ b/plugin/project.clj @@ -1,4 +1,4 @@ -(defproject lein-cljsbuild "1.1.2" +(defproject lein-cljsbuild "1.1.3-SNAPSHOT" :description "ClojureScript Autobuilder Plugin" :url "http://github.com/emezeske/lein-cljsbuild" :license diff --git a/support/project.clj b/support/project.clj index 4a0fe116..be402df0 100644 --- a/support/project.clj +++ b/support/project.clj @@ -1,4 +1,4 @@ -(defproject cljsbuild "1.1.2" +(defproject cljsbuild "1.1.3-SNAPSHOT" :description "ClojureScript Autobuilder" :url "http://github.com/emezeske/lein-cljsbuild" :license From db6b020c457e550da70ae04015e63e5da59c8e39 Mon Sep 17 00:00:00 2001 From: Chris Price Date: Mon, 1 Feb 2016 21:10:27 -0800 Subject: [PATCH 2/2] (204) Delete unnecessary `exit` call The `System.exit` call here causes issues, e.g. the process terminates early when trying to run `lein trampoline repl`. Tests pass without the `exit` call, and `lein cljsbuild once` and similar commands seem to perform fine. --- plugin/src/leiningen/cljsbuild.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin/src/leiningen/cljsbuild.clj b/plugin/src/leiningen/cljsbuild.clj index a9c627a7..a1dadcc9 100644 --- a/plugin/src/leiningen/cljsbuild.clj +++ b/plugin/src/leiningen/cljsbuild.clj @@ -34,7 +34,6 @@ (leval/eval-in-project (subproject/make-subproject project crossover-path builds) `(try ~form - ~(exit) (catch cljsbuild.test.TestsFailedException e# ; Do not print stack trace on test failure ~(exit 1))