Skip to content

Commit 21bde7d

Browse files
implicitfieldlinusg
authored andcommitted
Update executable paths to follow upstream changes
1 parent 222f9d0 commit 21bde7d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ case, so you'll need to build `libLagom.a` yourself.
3434
Once that's done, run:
3535

3636
```console
37-
python3 main.py --libjs-test262-runner ./Build/_deps/lagom-build/test262-runner --test262-root ./test262/
37+
python3 main.py --libjs-test262-runner ./Build/_deps/lagom-build/bin/test262-runner --test262-root ./test262/
3838
```
3939

4040
## Options

run_all_and_update_results.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ def get_git_commit_timestamp(path: Path) -> int:
3030

3131

3232
def find_lagom_executable(test262_path: Path, serenity_path: Path, name: str):
33-
executable_path = test262_path / f"Build/_deps/lagom-build/{name}"
33+
executable_path = test262_path / f"Build/_deps/lagom-build/bin/{name}"
3434
if not executable_path.exists():
35-
executable_path = serenity_path / f"Build/lagom/{name}"
35+
executable_path = serenity_path / f"Build/lagom/bin/{name}"
3636
if not executable_path.exists():
37-
executable_path = serenity_path / f"Build/lagom/Meta/Lagom/{name}"
37+
executable_path = serenity_path / f"Build/lagom/Meta/Lagom/bin/{name}"
3838

3939
return executable_path
4040

0 commit comments

Comments
 (0)