forked from josch/mmdebstrap
use tempdir(..., TMPDIR => 1) instead of tempdir(..., DIR => File::Spec->tmpdir)
This commit is contained in:
parent
ae15fe3d9f
commit
1579d06380
1 changed files with 1 additions and 2 deletions
|
@ -3446,8 +3446,7 @@ sub main() {
|
||||||
}
|
}
|
||||||
# since the output is a tarball, we create the rootfs in a temporary
|
# since the output is a tarball, we create the rootfs in a temporary
|
||||||
# directory
|
# directory
|
||||||
$options->{root}
|
$options->{root} = tempdir('mmdebstrap.XXXXXXXXXX', TMPDIR => 1);
|
||||||
= tempdir('mmdebstrap.XXXXXXXXXX', DIR => File::Spec->tmpdir);
|
|
||||||
info "using $options->{root} as tempdir";
|
info "using $options->{root} as tempdir";
|
||||||
# in unshare and root mode, other users than the current user need to
|
# in unshare and root mode, other users than the current user need to
|
||||||
# access the rootfs, most prominently, the _apt user. Thus, make the
|
# access the rootfs, most prominently, the _apt user. Thus, make the
|
||||||
|
|
Loading…
Reference in a new issue