From e41e0ec93d30d1ce8404559dc7072523c85a7560 Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Thu, 17 Sep 2015 16:43:54 -0300 Subject: No need a subshell to call execute functions --- build.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'build.sh') diff --git a/build.sh b/build.sh index ae28d29..8e135e0 100755 --- a/build.sh +++ b/build.sh @@ -385,13 +385,13 @@ for _IMGTOBUILD in $_IMAGESTOBUILD; do staginareas_clean_each_run if [ "${_IMGTOBUILD}" = "iso" ]; then - (create_iso_image) + create_iso_image elif [ "${_IMGTOBUILD}" = "memstick" ]; then - (create_memstick_image) + create_memstick_image elif [ "${_IMGTOBUILD}" = "memstickserial" ]; then - (create_memstick_serial_image) + create_memstick_serial_image elif [ "${_IMGTOBUILD}" = "memstickadi" ]; then - (create_memstick_adi_image) + create_memstick_adi_image elif [ "${_IMGTOBUILD}" = "fullupdate" ]; then create_Full_update_tarball elif [ "${_IMGTOBUILD}" = "nanobsd" -o "${_IMGTOBUILD}" = "nanobsd-vga" ]; then @@ -406,7 +406,7 @@ for _IMGTOBUILD in $_IMAGESTOBUILD; do create_nanobsd_diskimage ${_IMGTOBUILD} "${FLASH_SIZE}" elif [ "${_IMGTOBUILD}" = "ova" ]; then install_pkg_install_ports ${PRODUCT_NAME}-vmware - (create_ova_image) + create_ova_image install_pkg_install_ports fi done -- cgit v1.1