From 2d64611080a5e404e1ff754ba68f91fbd458bbbc Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 16 Jan 2013 10:26:33 -0500 Subject: [PATCH] Print the temporary base directory when pausing in a scripted test. --- scripted/base/src/main/scala/xsbt/test/FileCommands.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripted/base/src/main/scala/xsbt/test/FileCommands.scala b/scripted/base/src/main/scala/xsbt/test/FileCommands.scala index d425911ad..e445d27ed 100644 --- a/scripted/base/src/main/scala/xsbt/test/FileCommands.scala +++ b/scripted/base/src/main/scala/xsbt/test/FileCommands.scala @@ -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)),