mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
Setup script: fix misplaced fullstop due to windows \r
This commit is contained in:
parent
ad15b98692
commit
0dd2d39452
1 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ function removeOverride {
|
|||
echo -e "\\e[1;31m$out\\e[0m"
|
||||
exit 1
|
||||
fi
|
||||
echo -e "\\e[1;32m$out\\e[0m."
|
||||
echo -e "$(sed -e 's|\r||g' <<< "\\e[1;32m$out\\e[0m.")"
|
||||
local dll="$unix_sys_path/$1.dll"
|
||||
echo -n ' [2/2] Removing link... '
|
||||
if [ -h "$dll" ]; then
|
||||
|
@ -137,7 +137,7 @@ function createOverride {
|
|||
echo -e "\\e[1;31m$out\\e[0m"
|
||||
exit 1
|
||||
fi
|
||||
echo -e "\\e[1;32m$out\\e[0m."
|
||||
echo -e "$(sed -e 's|\r||g' <<< "\\e[1;32m$out\\e[0m.")"
|
||||
echo -n " [2/2] Creating link to $1.dll... "
|
||||
ln -sf "$dlls_dir/$1.dll" "$unix_sys_path/$1.dll"
|
||||
if [ $? -eq 0 ]; then
|
||||
|
|
Loading…
Add table
Reference in a new issue