mirror of
https://github.com/Phantop/appdwarf.git
synced 2024-11-13 02:12:54 +00:00
10 lines
224 B
Bash
Executable file
10 lines
224 B
Bash
Executable file
#!/bin/sh
|
|
. "$(dirname "$0")"/appmk
|
|
part0
|
|
LINK=https://dotnetcli.azureedge.net/dotnet/Runtime
|
|
VER=$(curl $LINK/LTS/latest.version)
|
|
LINK="$LINK/$VER/dotnet-runtime-$VER-linux-x64.tar.gz"
|
|
ungz
|
|
ln -s dotnet "$DIR"/AppRun
|
|
part9
|