TBR: mount_gpt_image: fix missing guard for esp

Missing check during mkdir causes failure with -e empty.

The tree broke prior to this commit, but this will break the dev
build so bypassing hooks. sorry.

TEST=reran build_image
BUG=none
TBR=adlr
This commit is contained in:
Will Drewry 2010-07-02 16:35:27 -05:00
parent 61f39fb266
commit fb48fa3500

View File

@ -88,7 +88,8 @@ function get_gpt_partitions() {
function mount_image() { function mount_image() {
mkdir -p "${FLAGS_rootfs_mountpt}" mkdir -p "${FLAGS_rootfs_mountpt}"
mkdir -p "${FLAGS_stateful_mountpt}" mkdir -p "${FLAGS_stateful_mountpt}"
mkdir -p "${FLAGS_esp_mountpt}" test -n "${FLAGS_esp_mountpt}" && \
mkdir -p "${FLAGS_esp_mountpt}"
# Get the partitions for the image / device. # Get the partitions for the image / device.
if [ -b ${FLAGS_from} ] ; then if [ -b ${FLAGS_from} ] ; then