Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
allaVolkov committed Feb 3, 2019
1 parent 0e54dcd commit 99a1a92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/artifacts/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func getContentType(targetPathGetter dir.ITargetPath, path string, contentTypes
func getRequiredDependencies(module *mta.Module) []mta.Requires {
result := make([]mta.Requires, 0)
for _, requiredDependency := range module.Requires {
if requiredDependency.Parameters["path"] != nil && requiredDependency.Name != ""{
if requiredDependency.Parameters["path"] != nil && requiredDependency.Name != "" {
result = append(result, requiredDependency)
}
}
Expand Down

0 comments on commit 99a1a92

Please sign in to comment.