Skip the loop if nothing was created so that chmod later doesn't fail

pull/1/head
parent eeb1ba4e11
commit d634095da1
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -923,6 +923,7 @@ sub setup {
die "type 1 not implemented";
} elsif ($type == 2) { # symlink
# nothing to do
next;
} elsif ($type == 3) { # character special
0 == system('mknod', "$options->{root}/$fname", 'c', $devmajor, $devminor) or die "mknod failed: $?";
} elsif ($type == 4) { # block special

Loading…
Cancel
Save