Print the temporary base directory when pausing in a scripted test.

This commit is contained in:
Mark Harrah 2013-01-16 10:26:33 -05:00
parent 4048a1ec08
commit 2d64611080
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class FileCommands(baseDirectory: File) extends BasicStatementHandler
"absent" nonEmpty absent _,
// "sync" twoArg("Two directory paths", sync _),
"newer" twoArg("Two paths", newer _),
"pause" noArg { readLine("Press enter to continue. "); println() },
"pause" noArg { println("Pausing in " + baseDirectory); readLine("Press enter to continue. "); println() },
"sleep" oneArg("Time in milliseconds", time => Thread.sleep(time.toLong) ),
"exec" nonEmpty(execute _ ),
"copy" copy (to => rebase(baseDirectory, to)),