DodoApp: Implement commit status page
Render used volume, postgresql and ingress resource details.
Change-Id: I87f34fd19d0d0d31ec495d2798c9f5ce99c0fd43
diff --git a/core/installer/bootstrapper.go b/core/installer/bootstrapper.go
index 4b72556..8a83eea 100644
--- a/core/installer/bootstrapper.go
+++ b/core/installer/bootstrapper.go
@@ -343,7 +343,7 @@
if err != nil {
return err
}
- if err := repoIO.Do(func(r soft.RepoFS) (string, error) {
+ if _, err := repoIO.Do(func(r soft.RepoFS) (string, error) {
w, err := r.Writer("README.md")
if err != nil {
return "", err
@@ -438,7 +438,7 @@
}
func configureMainRepo(repo soft.RepoIO, bootstrap BootstrapConfig) error {
- return repo.Do(func(r soft.RepoFS) (string, error) {
+ _, err := repo.Do(func(r soft.RepoFS) (string, error) {
if err := soft.WriteYaml(r, "bootstrap-config.yaml", bootstrap); err != nil {
return "", err
}
@@ -495,6 +495,7 @@
}
return "initialize pcloud directory structure", nil
})
+ return err
}
func (b Bootstrapper) installEnvManager(mgr *InfraAppManager, ss soft.Client, env BootstrapConfig) error {