<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,7 +1,7 @@
 @echo off
 setlocal ENABLEDELAYEDEXPANSION
 
-REM Copy any required Ruby libraries to a subfolder for use in the tutorial
+echo Copy any required Ruby libraries to a subfolder for use in the tutorial
 
 set RUBY_STDLIBS=%~dp0..\..\lib\ruby\1.8
 set IRONRUBY_LIBS=%RUBY_STDLIBS%
@@ -16,13 +16,15 @@ if defined MERLIN_ROOT (
 )
 
 if not EXIST &quot;%~dp0app\Libs&quot; (mkdir &quot;%~dp0app\Libs&quot;)
-for %%f in (erb.rb) do copy /y &quot;%RUBY_STDLIBS%\%%f&quot; &quot;%~dp0app\Libs\&quot;
-for %%f in (rdoc) do xcopy /s /y &quot;%RUBY_STDLIBS%\%%f&quot; &quot;%~dp0app\Libs\%%f\&quot;
-for %%f in (stringio.rb, bigdecimal.rb) do copy /y &quot;%IRONRUBY_LIBS%\%%f&quot; &quot;%~dp0app\Libs\&quot;
-for %%f in (minitest-1.4.2) do xcopy /s /y &quot;%GEMS%\%%f&quot; &quot;%~dp0app\Libs\%%f\&quot;
+for %%f in (erb.rb) do copy /y &quot;%RUBY_STDLIBS%\%%f&quot; &quot;%~dp0app\Libs\&quot; &gt; %~dp0build.log
+for %%f in (rdoc) do xcopy /s /y &quot;%RUBY_STDLIBS%\%%f&quot; &quot;%~dp0app\Libs\%%f\&quot; &gt; %~dp0build.log
+for %%f in (stringio.rb, bigdecimal.rb) do copy /y &quot;%IRONRUBY_LIBS%\%%f&quot; &quot;%~dp0app\Libs\&quot; &gt; %~dp0build.log
+for %%f in (minitest-1.4.2) do xcopy /s /y &quot;%GEMS%\%%f&quot; &quot;%~dp0app\Libs\%%f\&quot; &gt; %~dp0build.log
+
+echo Generating dlr.js for Silverlight version
 
 if not EXIST &quot;%~dp0js&quot; (mkdir &quot;%~dp0js&quot;)
 set SLPATH=%~dp0..\..\..\..\Hosts\Silverlight
 if not EXIST %SLPATH%\Scripts\dlr.js (ruby %SLPATH%\Scripts\generate_dlrjs.rb)
-for %%f in (dlr.js) do copy /y &quot;%SLPATH%\Scripts\%%f&quot; &quot;%~dp0js&quot;
-
+for %%f in (dlr.js) do copy /y &quot;%SLPATH%\Scripts\%%f&quot; &quot;%~dp0js&quot; &gt; %~dp0build.log
+del %~dp0build.log</diff>
      <filename>Merlin/Main/Languages/Ruby/Samples/Tutorial/build.bat</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,8 @@
-del %~dp0js\dlr.js
-rmdir /S /Q %~dp0app\Libs
-del %~dp0app\Tutorials\*_tutorial.generated.html
+@echo off
+
+echo Removing dlr.js, app\libs, and generated html files
+del %~dp0js\dlr.js &gt; %~dp0clean.log
+del %~dp0app.xap &gt; %~dp0clean.log
+rmdir /S /Q %~dp0app\Libs &gt; %~dp0clean.log
+del %~dp0app\Tutorials\*_tutorial.generated.html &gt; %~dp0clean.log
+del %~dp0clean.log</diff>
      <filename>Merlin/Main/Languages/Ruby/Samples/Tutorial/clean.bat</filename>
    </modified>
    <modified>
      <diff>@@ -1,11 +1,18 @@
+@echo off
+
 call %~dp0build.bat
 
-%MERLIN_ROOT%\Bin\&quot;Silverlight Release&quot;\Chiron.exe /d:%~dp0app /z:%~dp0app.xap
+echo Generating app.xap
+%MERLIN_ROOT%\Bin\&quot;Silverlight Release&quot;\Chiron.exe /s /d:%~dp0app /z:%~dp0app.xap
 
+echo Deploying tutorial
 if exist C:\inetpub\wwwroot\tutorial ( rmdir /S /Q C:\inetpub\wwwroot\tutorial )
 mkdir C:\inetpub\wwwroot\tutorial
-xcopy /E /Q /Y %~dp0* C:\inetpub\wwwroot\tutorial
+xcopy /E /Q /Y %~dp0* C:\inetpub\wwwroot\tutorial &gt; %~dp0tmp.log
 
+echo Deploying slvx files
 if exist C:\inetpub\wwwroot\dlr-slvx ( rmdir /S /Q C:\inetpub\wwwroot\dlr-slvx )
 mkdir C:\inetpub\wwwroot\dlr-slvx
-xcopy /Q /Y %MERLIN_ROOT%\Bin\&quot;Silverlight Release&quot;\*.slvx C:\inetpub\wwwroot\dlr-slvx
+xcopy /Q /Y %MERLIN_ROOT%\Bin\&quot;Silverlight Release&quot;\*.slvx C:\inetpub\wwwroot\dlr-slvx &gt; %~dp0tmp.log
+
+del %~dp0tmp.log</diff>
      <filename>Merlin/Main/Languages/Ruby/Samples/Tutorial/deploy.bat</filename>
    </modified>
    <modified>
      <diff>@@ -6,9 +6,9 @@ call %~dp0build.bat
 set CHIRON=&quot;%~dp0..\..\silverlight\bin\Chiron.exe&quot;
 if defined MERLIN_ROOT (
   REM - This is a dev environment. See http://wiki.github.com/ironruby/ironruby
-  set CHIRON=&quot;%~dp0..\..\..\..\Bin\Silverlight Release\Chiron.exe&quot;
+  set CHIRON=&quot;%~dp0..\..\..\..\Bin\Silverlight Debug\Chiron.exe&quot;
   if not EXIST !CHIRON! (
-    set CHIRON=&quot;%~dp0..\..\..\..\Bin\Silverlight Debug\Chiron.exe&quot;
+    set CHIRON=&quot;%~dp0..\..\..\..\Bin\Silverlight Release\Chiron.exe&quot;
     if not EXIST !CHIRON! (
       echo Could not find Chiron.exe.
       echo Do you have a build of Silverlight? If not, type &quot;bsd&quot;.
@@ -19,5 +19,5 @@ if defined MERLIN_ROOT (
   set QUERY_STRING=
 )
 
-%CHIRON% /b:sl_tutorial.html%QUERY_STRING% %*
+%CHIRON% /n /b:sl_tutorial.html%QUERY_STRING% %*
 :END</diff>
      <filename>Merlin/Main/Languages/Ruby/Samples/Tutorial/tutorial-sl.bat</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>64b6cd6baeb9d34599a82dc9b0c10dc9759a3f8f</id>
    </parent>
  </parents>
  <author>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </author>
  <url>http://github.com/ironruby/ironruby/commit/fb49e02bc27cbd357bc30994943624c1ea0b0175</url>
  <id>fb49e02bc27cbd357bc30994943624c1ea0b0175</id>
  <committed-date>2009-10-23T15:37:04-07:00</committed-date>
  <authored-date>2009-10-21T01:48:09-07:00</authored-date>
  <message>Cleanup IronRuby tutorial scripts</message>
  <tree>c2b6d3d633872545cdf4916695da357326c4f7a9</tree>
  <committer>
    <name>Jimmy Schementi</name>
    <email>jschementi@gmail.com</email>
  </committer>
</commit>
