appdwarf/apps/mkgo
Phantop fb2f691b21 v3.6: combine header and zzexe into just appdwarf
also put headers into functions so shellcheck can act on them
2022-06-24 17:09:54 -04:00

15 lines
404 B
Bash
Executable file

#!/bin/sh
PATH=$(dirname "$(readlink -f "${0}")")/..:$PATH
DIR=/tmp/appdwarf
mkdir -p $DIR
LINK=$(curl -sL https://go.dev/dl | grep -om1 dl/go.\*linux-amd64.tar.gz)
curl -L https://go.dev/"$LINK" | tar xz -C$DIR
cp "$(dirname "$(readlink -f "${0}")")"/../AppRun $DIR/go
sed -i '4i export GOPROXY=direct' $DIR/go/AppRun
sed -i 5s#/#/bin/# $DIR/go/AppRun
appdwarf $DIR/go
mv $DIR/go.sh go
rm -rf $DIR/go