appdwarf/apps/mkdotnet

10 lines
224 B
Plaintext
Raw Normal View History

#!/bin/sh
2022-10-18 14:09:41 +00:00
. "$(dirname "$0")"/appmk
part0
LINK=https://dotnetcli.azureedge.net/dotnet/Runtime
VER=$(curl $LINK/LTS/latest.version)
2022-10-18 14:09:41 +00:00
LINK="$LINK/$VER/dotnet-runtime-$VER-linux-x64.tar.gz"
ungz
ln -s dotnet "$DIR"/AppRun
2022-10-18 14:09:41 +00:00
part9