forked from josch/mmdebstrap
warn that creating tarball might also fail in proot mode for extract and custom variants
This commit is contained in:
parent
05e796cd95
commit
8abb93633c
1 changed files with 2 additions and 2 deletions
|
@ -2686,8 +2686,8 @@ sub main() {
|
||||||
$options->{maketar} = 0;
|
$options->{maketar} = 0;
|
||||||
if (defined $tar_compressor or $options->{target} =~ /\.tar$/ or $options->{target} eq '-') {
|
if (defined $tar_compressor or $options->{target} =~ /\.tar$/ or $options->{target} eq '-') {
|
||||||
$options->{maketar} = 1;
|
$options->{maketar} = 1;
|
||||||
if (any { $_ eq $options->{variant} } ('extract', 'custom') and $options->{mode} eq 'fakechroot') {
|
if (any { $_ eq $options->{variant} } ('extract', 'custom') and any { $_ eq $options->{mode} } ('fakechroot', 'proot')) {
|
||||||
info "creating a tarball in fakechroot mode might fail in extract and custom variants because there might be no tar inside the chroot";
|
info "creating a tarball in fakechroot mode or proot mode might fail in extract and custom variants because there might be no tar inside the chroot";
|
||||||
}
|
}
|
||||||
# try to fail early if target tarball cannot be opened for writing
|
# try to fail early if target tarball cannot be opened for writing
|
||||||
if ($options->{target} ne '-') {
|
if ($options->{target} ne '-') {
|
||||||
|
|
Loading…
Reference in a new issue