mirror of https://github.com/mirror/busybox.git
Add two fundamental tests for copying directories
parent
7ff33f1b42
commit
c6a99b993d
|
@ -0,0 +1,4 @@
|
|||
mkdir bar
|
||||
touch bar/baz
|
||||
busybox cp -R bar foo
|
||||
test -f foo/baz
|
|
@ -0,0 +1,5 @@
|
|||
mkdir bar
|
||||
touch bar/baz
|
||||
mkdir foo
|
||||
busybox cp -R bar foo
|
||||
test -f foo/bar/baz
|
Loading…
Reference in New Issue