Don't let dotnet-install.sh fail with 'Text file busy'

fixes #11626
This commit is contained in:
Dan Shechter 2019-06-25 22:53:30 +03:00
Родитель 7a96d9cb1a
Коммит 7a1afb7e70
1 изменённых файлов: 1 добавлений и 1 удалений

2
scripts/obtain/dotnet-install.sh поставляемый
Просмотреть файл

@ -612,7 +612,7 @@ copy_files_or_dirs_from_list() {
local target="$out_path/$path"
if [ "$override" = true ] || (! ([ -d "$target" ] || [ -e "$target" ])); then
mkdir -p "$out_path/$(dirname "$path")"
cp -R $override_switch "$root_path/$path" "$target"
cp -R --remove-destination $override_switch "$root_path/$path" "$target"
fi
done
}