aboutsummaryrefslogtreecommitdiff
path: root/lux-lein/src/leiningen/lux.clj
diff options
context:
space:
mode:
authorEduardo Julian2016-12-02 21:40:07 -0400
committerEduardo Julian2016-12-02 21:40:07 -0400
commit9f237c5c5a12dc4aa3b4fbd486586050bf84b2b8 (patch)
tree60517d31082d82cded6d3f0d50e8406695cefa6d /lux-lein/src/leiningen/lux.clj
parent60d3952d9550cc4d6fd0f5fc8312104b21024799 (diff)
- Fixed a bug that was causing compilation & testing to be done more than necessary.
- Changed the "watch" meta-command to "auto".
Diffstat (limited to 'lux-lein/src/leiningen/lux.clj')
-rw-r--r--lux-lein/src/leiningen/lux.clj4
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-lein/src/leiningen/lux.clj b/lux-lein/src/leiningen/lux.clj
index 4902d048f..40f39f9d3 100644
--- a/lux-lein/src/leiningen/lux.clj
+++ b/lux-lein/src/leiningen/lux.clj
@@ -23,7 +23,7 @@
"repl"
(&repl/repl project)
- "watch"
+ "auto"
(case (second args)
"build"
(&watch/watch #(&builder/build project) project)
@@ -32,5 +32,5 @@
(&watch/watch #(&test/test project) project))
;; default...
- (println "Commands available: (watch) build, (watch) test, repl"))
+ (println "Commands available: (auto) build, (auto) test, repl"))
)