File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change 8
8
[leiningen.trampoline :as tramp]
9
9
[clojure.java.io :as io]
10
10
[clojure.set :refer [intersection]]
11
+ [clojure.string :as string]
11
12
[leiningen.figwheel.fuzzy :as fuz]
12
13
[simple-lein-profile-merge.core :as lm]))
13
14
@@ -538,6 +539,15 @@ Configuration:
538
539
(if (and
539
540
(or (= nil command)
540
541
(= " :reactor" command))
542
+ ; ; no auto-trampoline on windows
543
+ ; ; users can call lein trampoline figwheel if they wish
544
+ ; ; see
545
+ ; ; https://github.com/technomancy/leiningen/issues/982
546
+ ; ; and
547
+ ; ; https://github.com/bhauman/lein-figwheel/issues/682
548
+ (not (-> (System/getProperty " os.name" )
549
+ (string/lower-case )
550
+ (.contains " windows" )))
541
551
(get-in project [:figwheel :repl ] true )
542
552
(get-in project [:figwheel :readline ] true ))
543
553
(if tramp/*trampoline?*
You can’t perform that action at this time.
0 commit comments