Skip to content

Commit

Permalink
use the eclipse configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
madhe committed Jun 19, 2024
1 parent 2656738 commit 97c18ae
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.project
/hs_err_pid*.log
/importThis/
release
10 changes: 6 additions & 4 deletions buildEclipse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ if ! test -f $LOCATION; then
case "${TYPE}" in
Linux-x86_64*) MYECLIPSE=$LOCATION/eclipse;;
Mac*) MYECLIPSE=$LOCATION/Eclipse.app/Contents/MacOS/eclipse;;
Windows-x86_64*) MYECLIPSE=$LOCATION/eclipse.exe;;
Windows-x86_64*) MYECLIPSE=$LOCATION/eclipsec.exe;;
esac
set -e
$MYECLIPSE -nosplash -application org.eclipse.equinox.p2.director -repository $ECLIPSEUPDATE -installIU org.eclipse.platform.feature.group
Expand Down Expand Up @@ -92,9 +92,11 @@ rm -rf release
mkdir -p release
NAME=Eclipse-Groovy
case "${TYPE}" in
Windows*) EXTRACT="7z a ./release/$NAME-$TYPE.zip $LOCATION/ ";;
*) EXTRACT="tar czf ./release/$NAME-$TYPE.tar.gz $LOCATION/;";;
Windows*) COMPRESS="7z a ./release/$NAME-$TYPE.zip $LOCATION/ ";;
*) COMPRESS="tar czf ./release/$NAME-$TYPE.tar.gz $LOCATION/;";;
echo $COMPRESS
eval $COMPRESS
esac
ls -al .
la -al release/
ls -al release/

0 comments on commit 97c18ae

Please sign in to comment.