Skip to content

Commit

Permalink
Fix typo in mod dependency install message
Browse files Browse the repository at this point in the history
  • Loading branch information
Subhajit97 committed Oct 20, 2023
1 parent e2a94bc commit 111ba9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parse/mod_parse_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (m *ModParseContext) EnsureWorkspaceLock(mod *modconfig.Mod) error {
if mod.HasDependentMods() && (m.WorkspaceLock.Empty() || m.WorkspaceLock.Incomplete()) {
// logger := fplog.Logger(m.RunCtx)
// logger.Error("mod has dependencies but no workspace lock file found", "mod", mod.Name(), "m.HasDependentMods()", mod.HasDependentMods(), "m.WorkspaceLock.Empty()", m.WorkspaceLock.Empty(), "m.WorkspaceLock.Incomplete()", m.WorkspaceLock.Incomplete())
return perr.BadRequestWithTypeAndMessage(perr.ErrorCodeDependencyFailure, "not all dependencies are installed - run 'steampipe mod install'")
return perr.BadRequestWithTypeAndMessage(perr.ErrorCodeDependencyFailure, "not all dependencies are installed - run 'flowpipe mod install'")
}

return nil
Expand Down

0 comments on commit 111ba9f

Please sign in to comment.