mirror of
https://github.com/MatsuriDayo/NekoBoxForAndroid.git
synced 2025-12-19 06:30:05 +08:00
16 lines
327 B
Bash
Executable File
16 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source buildScript/init/env.sh
|
|
mkdir -p $GOPATH
|
|
cd $golang
|
|
|
|
if [ ! -f "go/bin/go" ]; then
|
|
curl -Lso go.tar.gz https://go.dev/dl/go1.20.6.linux-amd64.tar.gz
|
|
echo "b945ae2bb5db01a0fb4786afde64e6fbab50b67f6fa0eb6cfa4924f16a7ff1eb go.tar.gz" | sha256sum -c -
|
|
tar xzf go.tar.gz
|
|
fi
|
|
|
|
go version
|
|
go env
|