Skip to content

Commit

Permalink
[#100] Replace tabs by spaces
Browse files Browse the repository at this point in the history
The template contained a mixture of spaces and tabs. Removed the tabs
and replaced them by spaces.
Also cleaned up trailing whitespace.

Signed-off-by: Karsten Thoms <[email protected]>
  • Loading branch information
Karsten Thoms committed Dec 10, 2019
1 parent fbea666 commit b8522a2
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ case "`uname`" in
else
echo "Using Java version: $JAVA_VERSION"
fi
if [ -z "$JAVA_HOME" ]; then
if [ -x "/usr/libexec/java_home" ]; then
JAVA_HOME=`/usr/libexec/java_home`
else
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
fi
fi
if [ -z "$JAVA_HOME" ]; then
if [ -x "/usr/libexec/java_home" ]; then
JAVA_HOME=`/usr/libexec/java_home`
else
JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/${JAVA_VERSION}/Home
fi
fi
;;
esac

Expand Down

0 comments on commit b8522a2

Please sign in to comment.