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

use correct arguments to grep.

parent 7733f656
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ do
    if [ "$impl" = "ccl" ]; then
	impl_suffix="-ccl"
    elif [ "$impl" = "sbcl" ]; then
	impl_suffic="-sbcl"
	impl_suffix="-sbcl"
    else echo "Invalid impl: $impl" && exit 1
    fi

@@ -59,7 +59,7 @@ 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_suffi}))
	dist_zip=$(basename -- $(find ${distro_dir} -name "*.zip" | grep $maybe_minus_v ${impl_suffix}))
    fi

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