We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ecd039c + 21fd464 commit cde0204Copy full SHA for cde0204
contrib/install.sh
@@ -15,7 +15,7 @@ DEST=$1
15
16
for SRC in $ARGS; do
17
# Copy file, then take output of the form 'src' -> 'dest' and get only 'dest'
18
- DESTFILE=$(cp -va $SRC $DEST | sed -e $'s/ -> /\\\n/g' | tail -n 1)
+ DESTFILE=$(LC_ALL=C cp -va $SRC $DEST | sed -e $'s/ -> /\\\n/g' | tail -n 1)
19
20
# If there are surrounding quotes, remove them. We do this simply by knowing that the destination is always an absolute path
21
if [ "$(echo $DESTFILE | head -c1)" != "/" ]; then
0 commit comments