Re: EOF when executing lein trampoline cljsbuild repl-listen

2012-12-24 Thread David Powell
I can confirm the same problem


On Sun, Dec 23, 2012 at 11:30 PM, Mark markaddle...@gmail.com wrote:

 Hi,
 I'm trying to make my way through the modern-cljs tutorials and running
 into a blocker:  I'm on tutorial 2 (
 https://github.com/magomimmo/modern-cljs/blob/master/doc/tutorial-02.md?.mdown)
 and when I try lein trampoline cljsbuild repl-listen, I get

 Exception in thread main clojure.lang.LispReader$ReaderException:
 java.lang.RuntimeException: EOF while reading, starting at line 1
 at clojure.lang.LispReader.read(LispReader.java:215)
 at clojure.core$read.invoke(core.clj:3346)
 at clojure.core$read.invoke(core.clj:3344)
 at clojure.main$eval_opt.invoke(main.clj:295)
 at clojure.main$initialize.invoke(main.clj:316)
 at clojure.main$script_opt.invoke(main.clj:340)
 at clojure.main$main.doInvoke(main.clj:427)
 at clojure.lang.RestFn.invoke(RestFn.java:930)
 at clojure.lang.Var.invoke(Var.java:460)
 at clojure.lang.AFn.applyToHelper(AFn.java:235)
 at clojure.lang.Var.applyTo(Var.java:532)
 at clojure.main.main(main.java:37)
 Caused by: java.lang.RuntimeException: EOF while reading, starting at line
 1
 at clojure.lang.Util.runtimeException(Util.java:170)
 at clojure.lang.LispReader.readDelimitedList(LispReader.java:1117)
 at clojure.lang.LispReader$ListReader.invoke(LispReader.java:962)
 at clojure.lang.LispReader.read(LispReader.java:180)
 ... 11 more

 I figure the reader is trying to load the project.clj but I'm executing
 from the project's root directory.  I'm using lein 2.0 preview 10 on a
 Windows 7 machine if that matters.


  --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with
 your first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Re: EOF when executing lein trampoline cljsbuild repl-listen

2012-12-24 Thread David Powell
Ah, cool.  I can confirm that this works for me in leiningen HEAD.


On Mon, Dec 24, 2012 at 6:08 AM, George Oliver georgeolive...@gmail.comwrote:



 On Sunday, December 23, 2012 3:30:53 PM UTC-8, Mark wrote:


 I figure the reader is trying to load the project.clj but I'm executing
 from the project's root directory.  I'm using lein 2.0 preview 10 on a
 Windows 7 machine if that matters.



 This might be a Windows + trampoline problem. See
 https://groups.google.com/d/msg/clojure/J0imbgVWh5I/lXL8DlvJxAoJ .



 --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with
 your first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Re: EOF when executing lein trampoline cljsbuild repl-listen

2012-12-24 Thread David Powell
Ah, cool.  This is fixed in leiningen HEAD.
Though lein ring server doesn't work in HEAD.


On Mon, Dec 24, 2012 at 6:08 AM, George Oliver georgeolive...@gmail.comwrote:



 On Sunday, December 23, 2012 3:30:53 PM UTC-8, Mark wrote:


 I figure the reader is trying to load the project.clj but I'm executing
 from the project's root directory.  I'm using lein 2.0 preview 10 on a
 Windows 7 machine if that matters.



 This might be a Windows + trampoline problem. See
 https://groups.google.com/d/msg/clojure/J0imbgVWh5I/lXL8DlvJxAoJ .



 --
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clojure@googlegroups.com
 Note that posts from new members are moderated - please be patient with
 your first post.
 To unsubscribe from this group, send email to
 clojure+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Re: EOF when executing lein trampoline cljsbuild repl-listen

2012-12-24 Thread Mark
Thanks guys.  I switched to a Linux environment and it works fine.

On Monday, December 24, 2012 3:49:54 AM UTC-8, David Powell wrote:

 I can confirm the same problem


 On Sun, Dec 23, 2012 at 11:30 PM, Mark markad...@gmail.com 
 javascript:wrote:

 Hi, 
 I'm trying to make my way through the modern-cljs tutorials and running 
 into a blocker:  I'm on tutorial 2 (
 https://github.com/magomimmo/modern-cljs/blob/master/doc/tutorial-02.md?.mdown)
   
 and when I try lein trampoline cljsbuild repl-listen, I get 

 Exception in thread main clojure.lang.LispReader$ReaderException: 
 java.lang.RuntimeException: EOF while reading, starting at line 1
 at clojure.lang.LispReader.read(LispReader.java:215)
 at clojure.core$read.invoke(core.clj:3346)
 at clojure.core$read.invoke(core.clj:3344)
 at clojure.main$eval_opt.invoke(main.clj:295)
 at clojure.main$initialize.invoke(main.clj:316)
 at clojure.main$script_opt.invoke(main.clj:340)
 at clojure.main$main.doInvoke(main.clj:427)
 at clojure.lang.RestFn.invoke(RestFn.java:930)
 at clojure.lang.Var.invoke(Var.java:460)
 at clojure.lang.AFn.applyToHelper(AFn.java:235)
 at clojure.lang.Var.applyTo(Var.java:532)
 at clojure.main.main(main.java:37)
 Caused by: java.lang.RuntimeException: EOF while reading, starting at 
 line 1
 at clojure.lang.Util.runtimeException(Util.java:170)
 at clojure.lang.LispReader.readDelimitedList(LispReader.java:1117)
 at clojure.lang.LispReader$ListReader.invoke(LispReader.java:962)
 at clojure.lang.LispReader.read(LispReader.java:180)
 ... 11 more

 I figure the reader is trying to load the project.clj but I'm executing 
 from the project's root directory.  I'm using lein 2.0 preview 10 on a 
 Windows 7 machine if that matters.


  -- 
 You received this message because you are subscribed to the Google
 Groups Clojure group.
 To post to this group, send email to clo...@googlegroups.comjavascript:
 Note that posts from new members are moderated - please be patient with 
 your first post.
 To unsubscribe from this group, send email to
 clojure+u...@googlegroups.com javascript:
 For more options, visit this group at
 http://groups.google.com/group/clojure?hl=en




-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

EOF when executing lein trampoline cljsbuild repl-listen

2012-12-23 Thread Mark
Hi, 
I'm trying to make my way through the modern-cljs tutorials and running 
into a blocker:  I'm on tutorial 2 
(https://github.com/magomimmo/modern-cljs/blob/master/doc/tutorial-02.md?.mdown)
  
and when I try lein trampoline cljsbuild repl-listen, I get 

Exception in thread main clojure.lang.LispReader$ReaderException: 
java.lang.RuntimeException: EOF while reading, starting at line 1
at clojure.lang.LispReader.read(LispReader.java:215)
at clojure.core$read.invoke(core.clj:3346)
at clojure.core$read.invoke(core.clj:3344)
at clojure.main$eval_opt.invoke(main.clj:295)
at clojure.main$initialize.invoke(main.clj:316)
at clojure.main$script_opt.invoke(main.clj:340)
at clojure.main$main.doInvoke(main.clj:427)
at clojure.lang.RestFn.invoke(RestFn.java:930)
at clojure.lang.Var.invoke(Var.java:460)
at clojure.lang.AFn.applyToHelper(AFn.java:235)
at clojure.lang.Var.applyTo(Var.java:532)
at clojure.main.main(main.java:37)
Caused by: java.lang.RuntimeException: EOF while reading, starting at line 1
at clojure.lang.Util.runtimeException(Util.java:170)
at clojure.lang.LispReader.readDelimitedList(LispReader.java:1117)
at clojure.lang.LispReader$ListReader.invoke(LispReader.java:962)
at clojure.lang.LispReader.read(LispReader.java:180)
... 11 more

I figure the reader is trying to load the project.clj but I'm executing 
from the project's root directory.  I'm using lein 2.0 preview 10 on a 
Windows 7 machine if that matters.


-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Re: EOF when executing lein trampoline cljsbuild repl-listen

2012-12-23 Thread George Oliver


On Sunday, December 23, 2012 3:30:53 PM UTC-8, Mark wrote:


 I figure the reader is trying to load the project.clj but I'm executing 
 from the project's root directory.  I'm using lein 2.0 preview 10 on a 
 Windows 7 machine if that matters.



This might be a Windows + trampoline problem. 
See https://groups.google.com/d/msg/clojure/J0imbgVWh5I/lXL8DlvJxAoJ . 

 

-- 
You received this message because you are subscribed to the Google
Groups Clojure group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en