Skip to content

Commit

Permalink
Fix windows build
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1655 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Feb 23, 2009
1 parent 1566c51 commit 9f31b23
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -123,6 +123,9 @@ public void setup() throws IOException
}
else
{
jbossHome = System.getProperty(JBOSS_HOME_PROPERTY_NAME);
File jbossHomeFile = new File(jbossHome);
jbossHome = jbossHomeFile.getPath();
log.info("Using JBoss instance in " + jbossHome + " at URL " + configuration.getHost());
}
this.bootTimeout = Long.getLong(JBOSS_BOOT_TIMEOUT_PROPERTY_NAME, 240000);
Expand Down

0 comments on commit 9f31b23

Please sign in to comment.