forked from josch/mmdebstrap
fix tar call in proot mode (avoid extra entry for /dev and error message about non-existant working directory)
This commit is contained in:
parent
5498f61ce5
commit
2d6703add0
1 changed files with 1 additions and 1 deletions
|
@ -1667,7 +1667,7 @@ sub main() {
|
|||
} elsif ($options->{mode} eq 'proot') {
|
||||
# proot requires tar to run inside proot or otherwise
|
||||
# permissions will be completely off
|
||||
0 == system('proot', '--root-id', "--rootfs=$options->{root}", 'tar', @taropts, '-C', '/', '.') or die "tar failed: $?";
|
||||
0 == system('proot', '--root-id', "--rootfs=$options->{root}", '--cwd=/', 'tar', @taropts, '--exclude=./dev', '-C', '/', '.') or die "tar failed: $?";
|
||||
} elsif (any { $_ eq $options->{mode} } ('root')) {
|
||||
0 == system('tar', @taropts, '-C', $options->{root}, '.') or die "tar failed: $?";
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue