Skip to content

Commit

Permalink
JENKINS-26504 Cannot run low numbered builds with xvfb in jenkins 1.597
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoran Regvart committed Jan 20, 2015
1 parent a3a812d commit 1157d4a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -481,7 +481,7 @@ private XvfbEnvironment launchXvfb(@SuppressWarnings("rawtypes") final AbstractB
final Node currentNode = currentComputer.getNode();
final FilePath rootPath = currentNode.getRootPath();

final FilePath frameBufferDir = rootPath.createTempDir(build.getId(), "xvfb");
final FilePath frameBufferDir = rootPath.createTempDir("xvfb-" + build.getId() + "-", ".fbdir");

final EnvVars environment = currentComputer.getEnvironment();
final XvfbInstallation installation = getInstallation(environment, currentNode, listener);
Expand Down

0 comments on commit 1157d4a

Please sign in to comment.