Skip to content

Commit 1aa4563

Browse files
committed
Fix quoting in libomp.a dune rule
Escape double quotes in the bash action to fix "Too many arguments for bash" dune parsing error.
1 parent a265eb3 commit 1aa4563

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/quickjs/dune

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@
6464
\"
6565
for p in $PAWTHS; do
6666
for matched_path in $p; do
67-
if [ -f "$matched_path" ]; then
68-
cp "$matched_path" "$OUT"
67+
if [ -f \"$matched_path\" ]; then
68+
cp \"$matched_path\" \"$OUT\"
6969
exit 0
7070
fi
7171
done

0 commit comments

Comments
 (0)