Forum Discussion
Easen
13 years agoNew Contributor
Fix for *unix systems
cd into the SoapUI
cp bin/soapui*.jar .
The issue is that this code doesn't look in the bin folder:-
https://github.com/SmartBear/soapui/blo ... .java#L217
String[] mainJar = soapUIHome.list( new FilenameFilter()
{
public boolean accept( File dir, String name )
{
if( name.toLowerCase().startsWith( "soapui" ) && name.toLowerCase().endsWith( ".jar" ) )
return true;
return false;
}
} );
cd into the SoapUI
cp bin/soapui*.jar .
The issue is that this code doesn't look in the bin folder:-
https://github.com/SmartBear/soapui/blo ... .java#L217
String[] mainJar = soapUIHome.list( new FilenameFilter()
{
public boolean accept( File dir, String name )
{
if( name.toLowerCase().startsWith( "soapui" ) && name.toLowerCase().endsWith( ".jar" ) )
return true;
return false;
}
} );