This commit is contained in:
Amarjeet Anand 2024-04-28 13:42:07 +00:00 committed by GitHub
commit ee22874f85
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 24 additions and 0 deletions

4
packages/go/1.22.2/build.sh vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env bash
curl -LO https://go.dev/dl/go1.22.2.linux-amd64.tar.gz
tar -xzf go1.22.2.linux-amd64.tar.gz
rm go1.22.2.linux-amd64.tar.gz

2
packages/go/1.22.2/environment vendored Normal file
View File

@ -0,0 +1,2 @@
export PATH=$PWD/go/bin:$PATH
export GOPATH=$PWD/gopath

5
packages/go/1.22.2/metadata.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"language": "go",
"version": "1.22.2",
"aliases": ["go", "golang"]
}

6
packages/go/1.22.2/run vendored Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
mv $1 $1.go
filename=*.go
shift
GOCACHE=$PWD go run $filename "$@"

7
packages/go/1.22.2/test.go vendored Normal file
View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("OK")
}