mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
Updated to Kotlin 1.8.20
This commit is contained in:
parent
86d897d580
commit
0c253a667d
6 changed files with 36 additions and 0 deletions
13
packages/kotlin/1.8.20/build.sh
vendored
Normal file
13
packages/kotlin/1.8.20/build.sh
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Download and extract JDK8
|
||||
curl -L "https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u292-b10/OpenJDK8U-jdk_x64_linux_hotspot_8u292b10.tar.gz" -o jdk.tar.gz
|
||||
tar xzf jdk.tar.gz --strip-components=1
|
||||
rm jdk.tar.gz
|
||||
|
||||
# Download and extract Kotlin
|
||||
curl -L "https://github.com/JetBrains/kotlin/releases/download/v1.8.20/kotlin-compiler-1.8.20.zip" -o kotlin.zip
|
||||
unzip kotlin.zip
|
||||
rm kotlin.zip
|
||||
cp -r kotlinc/* .
|
||||
rm -rf kotlinc
|
Loading…
Add table
Add a link
Reference in a new issue