Skip to content

Commit

Permalink
fix nil ref bug
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonbloom committed Oct 28, 2021
1 parent 8369cfd commit a678565
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2021.10.28
2021.10.28-1
3 changes: 3 additions & 0 deletions internal/core/server/secrets.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ import (

func (ws *Workspace) getVaultURLs(ctx context.Context) []string {
manifest := ws.tryLoadManifest(ctx)
if manifest == nil {
return nil
}

env := exohcl.NewEnvironment(manifest)
_ = exohcl.Analyze(ctx, env)
Expand Down

0 comments on commit a678565

Please sign in to comment.