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 89a4b85 commit 849ce74Copy full SHA for 849ce74
resources/tools/scala-utils.sh
@@ -18,8 +18,9 @@ if [[ ! $(scala -version 2>&1) =~ "version 2.12" ]]; then
18
# Update to Scala 2.12 is required for spark
19
SCALA_VERSION=2.12.12
20
echo "Updating to Scala $SCALA_VERSION. Please wait..."
21
- apt-get remove scala-library scala
22
- apt-get autoremove
+ # TODO: remove scala - only works if scala exists
+ # apt-get remove scala-library scala
23
+ # apt-get autoremove
24
wget -q https://downloads.lightbend.com/scala/$SCALA_VERSION/scala-$SCALA_VERSION.deb -O ./scala.deb
25
dpkg -i scala.deb
26
rm scala.deb
0 commit comments