Update main.go
This commit is contained in:
14
main.go
14
main.go
@@ -7,21 +7,9 @@ import (
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println("Read env from gitea file")
|
||||
fmt.Println("Read env from Gitea")
|
||||
|
||||
for _, v := range os.Environ() {
|
||||
fmt.Println(v)
|
||||
}
|
||||
|
||||
giteaEnvFile, ok := os.LookupEnv("GITEA_ENV")
|
||||
if !ok {
|
||||
log.Fatalln("Gitea env file not found")
|
||||
}
|
||||
|
||||
raw, err := os.ReadFile(giteaEnvFile)
|
||||
if err != nil {
|
||||
log.Fatalln("Gitea env file read error:", err)
|
||||
}
|
||||
|
||||
fmt.Println(string(raw))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user