From 6e1c36ca1e76fd02cd01584f5b30324d17e466ff Mon Sep 17 00:00:00 2001 From: Michael Quigley Date: Wed, 4 Jun 2025 17:14:19 -0400 Subject: [PATCH] actually set the provided name (#976) --- environment/env_v0_4/dirs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment/env_v0_4/dirs.go b/environment/env_v0_4/dirs.go index d0b9b65e..e9605247 100644 --- a/environment/env_v0_4/dirs.go +++ b/environment/env_v0_4/dirs.go @@ -9,7 +9,7 @@ import ( var rootDirName = ".zrok" func SetRootDirName(name string) { - rootDirName = ".zrok" + rootDirName = name } func rootDir() (string, error) {