We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb717b9 commit 4a7d5f3Copy full SHA for 4a7d5f3
cookbooks/jdk/recipes/install.bash
@@ -12,7 +12,7 @@ function install()
12
{
13
initializeFolder "$(getCurrentUserHomeFolder)/Library/Caches/Homebrew"
14
15
- sudo rm -f -r /Library/Java/JavaVirtualMachines/openjdk-*.jdk
+ sudo rm -f -r '/Library/Java/JavaVirtualMachines'/openjdk-*.jdk
16
17
if [[ "$(existCommand 'java')" = 'true' ]]
18
then
cookbooks/jdk/recipes/uninstall.bash
@@ -5,7 +5,7 @@ function uninstall()
5
if [[ "$(existCommand 'brew')" = 'true' ]]
6
7
brew cask uninstall "${JDK_VERSION}" || true
8
9
fi
10
}
11
0 commit comments