piston/container/steps/210-kotlin.sh
Thomas Hobson 219364af97
packer-based lxc container building
Fills the simple installation void
2021-01-28 02:27:31 +13:00

10 lines
No EOL
351 B
Bash

#!/usr/bin/env bash
# install kotlin
# final binary: /opt/kotlinc/bin/kotlinc
# get version: /opt/kotlinc/bin/kotlinc -version
cd /opt
wget https://github.com/JetBrains/kotlin/releases/download/v1.4.10/kotlin-compiler-1.4.10.zip
unzip kotlin-compiler-1.4.10.zip
rm kotlin-compiler-1.4.10.zip
echo 'export PATH=$PATH:/opt/kotlinc/bin' >> /opt/.profile