use tempdir(..., TMPDIR => 1) instead of tempdir(..., DIR => File::Spec->tmpdir)

pull/1/head
parent ae15fe3d9f
commit 1579d06380
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -3446,8 +3446,7 @@ sub main() {
}
# since the output is a tarball, we create the rootfs in a temporary
# directory
$options->{root}
= tempdir('mmdebstrap.XXXXXXXXXX', DIR => File::Spec->tmpdir);
$options->{root} = tempdir('mmdebstrap.XXXXXXXXXX', TMPDIR => 1);
info "using $options->{root} as tempdir";
# in unshare and root mode, other users than the current user need to
# access the rootfs, most prominently, the _apt user. Thus, make the

Loading…
Cancel
Save