diff --git a/.gitignore b/.gitignore index af769cd..0d5b2e3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ release /bin/ /build_output/ +/output/ diff --git a/buildEclipse.sh b/buildEclipse.sh index 58d0abd..bb89fd6 100644 --- a/buildEclipse.sh +++ b/buildEclipse.sh @@ -186,6 +186,8 @@ case "${TYPE}" in Mac*) MKPKG="cp -r ./plugin-out/dropins/* \"$LOCATION/Eclipse.app/Contents/Eclipse/dropins/\"";; Linux*) MKPKG="cp -r ./plugin-out/dropins/* $LOCATION/dropins/";; esac +echo "$MKPKG" +eval "$MKPKG" NAME=Eclipse-Groovy case "${TYPE}" in Windows*) MKPKG="7z a \"$SCRIPT_DIR/$RELEASEDIR/$NAME-$TYPE.zip\" \"$LOCATION/\"* ";;