22 lines
398 B
Plaintext
22 lines
398 B
Plaintext
import java.io.*;
|
|
import java.util.*;
|
|
import java.util.regex.*;
|
|
|
|
try
|
|
{
|
|
File file = new File( basedir, "target/touch.txt" );
|
|
System.out.println( "Checking for existence of generated touch file: " + file );
|
|
if ( !file.isFile() )
|
|
{
|
|
System.out.println( "FAILED!" );
|
|
return false;
|
|
}
|
|
}
|
|
catch( Throwable t )
|
|
{
|
|
t.printStackTrace();
|
|
return false;
|
|
}
|
|
|
|
return true;
|