Skip to content

Commit

Permalink
fix(ci): update toolchains path for android build
Browse files Browse the repository at this point in the history
Extracted from 9c625f1
  • Loading branch information
quentinvernot committed Nov 24, 2022
1 parent 3062cde commit fd27de2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_android_bin_path() -> Path:
try:
info = json.loads(out)
package_path = Path(info[0]["package_folder"])
bin_path = package_path / "toolchains/llvm/prebuilt/linux-x86_64/bin"
bin_path = package_path / "bin/toolchains/llvm/prebuilt/linux-x86_64/bin"
return bin_path
except (json.JSONDecodeError, KeyError, IndexError):
if out:
Expand Down

0 comments on commit fd27de2

Please sign in to comment.