Skip to content

Commit ddb2c0c

Browse files
committed
Fix relative dist path for Linux compat builds
1 parent a7219dd commit ddb2c0c

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scripts/build_linux_compat.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ if [[ "$#" -gt 1 ]]; then
1313
exit 1
1414
fi
1515

16+
if [[ "$out_dir" != /* ]]; then
17+
out_dir="$repo_root/$out_dir"
18+
fi
19+
1620
artifact="${JCODE_COMPAT_ARTIFACT:-jcode-linux-x86_64}"
1721
profile="${JCODE_COMPAT_PROFILE:-release}"
1822
image="${JCODE_COMPAT_IMAGE:-quay.io/pypa/manylinux2014_x86_64}"

0 commit comments

Comments
 (0)