Skip to content

Commit

Permalink
[chore]- fix report-card issue's
Browse files Browse the repository at this point in the history
  • Loading branch information
ShimiT committed Nov 25, 2019
1 parent 9cd7431 commit 07d41da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ linters:
- gocyclo
- gofmt
- gosec
- golint
1 change: 1 addition & 0 deletions internal/archive/fsops.go
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,7 @@ func CopyFile(src, dst string) (rerr error) {
return changeTargetMode(src, dst)
}

// WriteFile - writes file content
func WriteFile(in io.Reader, dst string) (rerr error) {
out, err := os.Create(dst)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion internal/artifacts/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (

const (
copyInParallel = false
// Maximum number of parallel makefile jobs if the parameter is not set by the user
// MaxMakeParallel - Maximum number of parallel makefile jobs if the parameter is not set by the user
MaxMakeParallel = 8
)

Expand Down

0 comments on commit 07d41da

Please sign in to comment.