Skip to content

Commit

Permalink
chore: Remove usage of errors.Cause (runatlantis#5291)
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Massa <lukefrederickmassa@gmail.com>
Signed-off-by: Petr Bubenik <petr.bubenik@drmax.eu>
  • Loading branch information
lukemassa authored and Petr Bubenik committed Feb 4, 2025
1 parent cf2aee6 commit 24efe61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/events/project_command_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ func (p *DefaultProjectCommandBuilder) buildProjectCommand(ctx *command.Context,
// use the default repository workspace because it is the only one guaranteed to have an atlantis.yaml,
// other workspaces will not have the file if they are using pre_workflow_hooks to generate it dynamically
repoDir, err := p.WorkingDir.GetWorkingDir(ctx.Pull.BaseRepo, ctx.Pull, DefaultWorkspace)
if os.IsNotExist(errors.Cause(err)) {
if errors.Is(err, os.ErrNotExist) {
return projCtx, errors.New("no working directory found–did you run plan?")
} else if err != nil {
return projCtx, err
Expand Down

0 comments on commit 24efe61

Please sign in to comment.