Skip to content

Commit dc85376

Browse files
committed
Seems like an output dir naming issue, testing fix
1 parent c0ab93b commit dc85376

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-presets.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,9 @@ jobs:
5757
toolchain_url="https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v0.17.2/toolchain_linux-x86_64_arm-zephyr-eabi.tar.xz"
5858
toolchain_dir="arm-zephyr-x86-64-eabi"
5959
curl --output "${toolchain_dir}.tar.xz" -L "${toolchain_url}"
60-
tar xf "${toolchain_dir}.tar.xz"
60+
tar xf "${toolchain_dir}.tar.xz" -C "$(pwd)/${toolchain_dir}"
6161
rm -f "${toolchain_dir}.tar.xz"
62+
ls -lah
6263
toolchain_bin_path="$(cd ${toolchain_dir}/bin && pwd)"
6364
export PATH="\${PATH}:${toolchain_bin_path}"
6465

0 commit comments

Comments
 (0)