aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/git-lfs-server/main.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/cmd/git-lfs-server/main.go b/cmd/git-lfs-server/main.go
index 934f2ea..c1b08f6 100644
--- a/cmd/git-lfs-server/main.go
+++ b/cmd/git-lfs-server/main.go
@@ -437,6 +437,10 @@ func log(msg string, args ...any) {
437} 437}
438 438
439func die(msg string, args ...any) { 439func die(msg string, args ...any) {
440 log("Environment variables: (dying)")
441 for _, s := range os.Environ() {
442 log(" %s", s)
443 }
440 log(msg, args...) 444 log(msg, args...)
441 os.Exit(1) 445 os.Exit(1)
442} 446}
@@ -459,11 +463,6 @@ func loadPublicKey(path string) ed25519.PublicKey {
459} 463}
460 464
461func main() { 465func main() {
462 log("Environment variables:")
463 for _, s := range os.Environ() {
464 log(" %s", s)
465 }
466
467 anonUser := os.Getenv("ANON_USER") 466 anonUser := os.Getenv("ANON_USER")
468 publicKeyPath := os.Getenv("GITOLFS3_PUBLIC_KEY_PATH") 467 publicKeyPath := os.Getenv("GITOLFS3_PUBLIC_KEY_PATH")
469 endpoint := os.Getenv("S3_ENDPOINT") 468 endpoint := os.Getenv("S3_ENDPOINT")