1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

Ensure that each `-d'-specified directory is created.

This commit is contained in:
Jim Meyering
2005-06-15 09:04:21 +00:00
parent ec5b4733d8
commit 39b87363ae

View File

@@ -64,5 +64,8 @@ test "$1" = -r-xr-xr-x || fail=1
ginstall -d . || fail=1
ginstall -d newdir || fail=1
ginstall -d newdir1 newdir2 newdir3 || fail=1
test -d newdir1 || fail=1
test -d newdir2 || fail=1
test -d newdir3 || fail=1
(exit $fail); exit $fail