Skip to content

Commit 80760a3

Browse files
committed
8260669: Missing quotes in fixpath.sh
Reviewed-by: tbell, iris, mikael, ihse
1 parent c0cde7d commit 80760a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make/scripts/fixpath.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ function import_path() {
166166
# unixpath is based on short name
167167
fi
168168
# Make it lower case
169-
path="$(echo "$unixpath" | tr [:upper:] [:lower:])"
169+
path="$(echo "$unixpath" | tr '[:upper:]' '[:lower:]')"
170170
fi
171171
else
172172
# On WSL1, PATHTOOL will fail for files in envroot. If the unix path

0 commit comments

Comments
 (0)