shutils/chroot.sh: create /tmp dir if doesn't exist in masterdir.
This commit is contained in:
parent
93a5856427
commit
e0611f10ab
|
@ -253,6 +253,10 @@ xbps_chroot_handler()
|
|||
echo "done."
|
||||
fi
|
||||
|
||||
if [ ! -d "$XBPS_MASTERDIR/tmp" ]; then
|
||||
mkdir -p "$XBPS_MASTERDIR/tmp"
|
||||
fi
|
||||
|
||||
create_binsh_symlink
|
||||
create_busybox_links
|
||||
install_xbps_utils
|
||||
|
|
Loading…
Reference in New Issue