Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
allaVolkov committed Feb 26, 2019
1 parent 8ba6bae commit e6ade5d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion cmd/assembly.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ func init() {

}


// Generate mtar from build artifacts
var assemblyCommand = &cobra.Command{
Use: "assemble",
Expand Down
3 changes: 1 addition & 2 deletions internal/artifacts/module_arch.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,8 @@ func copyMtaContentFromPath(sourceMtaContent, targetMtaContent, mtaContentPath,
if mtaContentInfo.IsDir() {
if copyInParallel {
return dir.CopyDir(sourceMtaContent, targetMtaContent, true, dir.CopyEntriesInParallel)
} else {
return dir.CopyDir(sourceMtaContent, targetMtaContent, true, dir.CopyEntries)
}
return dir.CopyDir(sourceMtaContent, targetMtaContent, true, dir.CopyEntries)
}

mtaContentParentDir := filepath.Dir(mtaContentPath)
Expand Down

0 comments on commit e6ade5d

Please sign in to comment.