Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit a0d9541

Browse files
koki-developclaude
andcommitted
Add Go 1.25.5 language package
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c61695e commit a0d9541

5 files changed

Lines changed: 25 additions & 0 deletions

File tree

packages/go/1.25.5/build.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
curl -LO https://go.dev/dl/go1.25.5.linux-amd64.tar.gz
3+
tar -xzf go1.25.5.linux-amd64.tar.gz
4+
rm go1.25.5.linux-amd64.tar.gz

packages/go/1.25.5/environment

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export PATH=$PWD/go/bin:$PATH
2+
export GOPATH=$PWD/gopath

packages/go/1.25.5/metadata.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"language": "go",
3+
"version": "1.25.5",
4+
"aliases": ["go", "golang"]
5+
}

packages/go/1.25.5/run

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
mv $1 $1.go
4+
#filename=$1.go
5+
filename=*.go
6+
shift
7+
GOCACHE=$PWD go run $filename "$@"

packages/go/1.25.5/test.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "fmt"
4+
5+
func main() {
6+
fmt.Println("OK")
7+
}

0 commit comments

Comments
 (0)