tamingtext / book

Taming Text Book Source Code
http://www.tamingtext.com
380 stars 207 forks source link

windows execution error #22

Open ehrudxo opened 9 years ago

ehrudxo commented 9 years ago

hi, while I am reading your book and following your instruction, I found some execution error So I am writing to you

/book/bin/frankenstein.cmd file has an error.

your source is as shown below

6: for %%i in (..\lib*.jar) do set CLASSPATH=!CLASSPATH!;%%i

-- you should change like this -- for %%i in (.\target\dependency*.jar) do set CLASSPATH=!CLASSPATH!;%%i

thanks.