Commit fd9d34a1 authored by Dave Cooper's avatar Dave Cooper
Browse files

fix find/grep syntax in docker/build one more time.

parent e561317d
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -59,7 +59,8 @@ do
	dist_zip="gendl1598-beta-linux${impl_suffix}.zip"
    else
	distro_dir=${staging}gendl/${pipeline}L${suffix}/distribution/
	dist_zip=$(basename -- $(find ${distro_dir} -name "*.zip" | grep $maybe_minus_v "${impl_suffix}"))
	dist_zip=$(basename -- "$(find "${distro_dir}" -name "*.zip" | grep "${impl_suffix}")") \
	    || { echo "Error: No .zip file found matching ${impl_suffix} in ${distro_dir}"; exit 1; }
    fi

    echo pipeline: ${pipeline}, branch: ${branch}