Skip to content

Commit

Permalink
8260669: Missing quotes in fixpath.sh
Browse files Browse the repository at this point in the history
Reviewed-by: tbell, iris, mikael, ihse
  • Loading branch information
erikj79 committed Feb 1, 2021
1 parent c0cde7d commit 80760a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make/scripts/fixpath.sh
Expand Up @@ -166,7 +166,7 @@ function import_path() {
# unixpath is based on short name
fi
# Make it lower case
path="$(echo "$unixpath" | tr [:upper:] [:lower:])"
path="$(echo "$unixpath" | tr '[:upper:]' '[:lower:]')"
fi
else
# On WSL1, PATHTOOL will fail for files in envroot. If the unix path
Expand Down

0 comments on commit 80760a3

Please sign in to comment.