grim/hgkeeper

Parents c9dc1d88840a
Children 9d843fb39620
Pass the AdminRepo into the policy template so that will work automatically as well
--- a/setup/command.go Wed Sep 11 01:33:27 2019 -0500
+++ b/setup/command.go Wed Sep 11 23:26:04 2019 -0500
@@ -89,8 +89,10 @@
defer file.Close()
tplateData := struct {
+ AdminRepo string
AdminUsername string
}{
+ AdminRepo: "/" + adminRepo,
AdminUsername: c.AdminUsername,
}