mzp (Hiroki MIZUNO)
- Login: mzp
- Registered on: 08/25/2012
- Last sign in: 09/23/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/12/2017
-
12:51 PM Ruby Bug #13914: FileUtis.cp_r with remove_destination cannot overwrite a symlink of directory
- I send a pull request of this: https://github.com/ruby/fileutils/pull/9
09/18/2017
-
04:41 AM Ruby Bug #13914 (Closed): FileUtis.cp_r with remove_destination cannot overwrite a symlink of directory
- ## Reproduce code
~~~
require 'fileutils'
# setup directory like following:
#
# tmp
# ├── dest
# └── src
# ├── a -> dir
# └── dir
#
FileUtils.rm_rf 'tmp'
%w(tmp/src tmp/dest tmp/src/dir).each do|path|
...