Skip to content

Commit

Permalink
The PEX used in the interactive tests should be crazy-fun's
Browse files Browse the repository at this point in the history
Rather than one located in the user's home directory.
/facepalm
  • Loading branch information
shs96c committed Jun 26, 2016
1 parent 7759ff4 commit 4942a70
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions java/client/test/org/openqa/selenium/BuckBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ private void downloadBuckPexIfNecessary(ImmutableList.Builder<String> builder)
Path projectRoot = InProject.locate("Rakefile").getParentFile().toPath();
String buckVersion = new String(Files.readAllBytes(projectRoot.resolve(".buckversion"))).trim();

Path pex = Paths.get(
StandardSystemProperty.USER_HOME.value(), ".crazyfun", "buck", buckVersion, "buck.pex");
Path pex = Paths.get("buck-out", "crazy-fun", buckVersion, "buck.pex");

String expectedHash = new String(Files.readAllBytes(projectRoot.resolve(".buckhash"))).trim();
HashCode md5 = Files.exists(pex) ?
Expand Down

0 comments on commit 4942a70

Please sign in to comment.