Skip to content

Commit

Permalink
improve err message on v3 change
Browse files Browse the repository at this point in the history
  • Loading branch information
fabriciojs committed Jan 28, 2024
1 parent 97bab02 commit 0301555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/cloud/deploy_validator.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func ValidateConfig(deployConfig *DeployConfig) (err error) {
}

if !buildStat.IsDir() {
err = fmt.Errorf("service '%s' build entry '%s' is not a directory", service, buildStr)
err = fmt.Errorf("service '%s' build entry '%s' is not a directory (check v3 upgrade guide)", service, buildStr)
return
}
}
Expand Down

0 comments on commit 0301555

Please sign in to comment.