Skip to content

Commit

Permalink
fixing the Macos extraction location
Browse files Browse the repository at this point in the history
  • Loading branch information
madhephaestus committed Jun 19, 2024
1 parent 2f3448d commit 80bede6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buildEclipse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ if ! test -f $LOCATION; then
echo "$LOCATION File does not exist."
case "${TYPE}" in
Windows*) EXTRACT="7z $PACKAGE -o$LOCATION";;
*) EXTRACT="tar -xvzf $PACKAGE -C $LOCATION --strip-components=1;";;
Linux*) EXTRACT="tar -xvzf $PACKAGE -C $LOCATION --strip-components=1;";;
Mac*) EXTRACT="tar -xvzf $PACKAGE -C $LOCATION;";;

esac
mkdir -p $LOCATION
echo $EXTRACT
Expand Down

0 comments on commit 80bede6

Please sign in to comment.