Skip to content

Commit

Permalink
Merge pull request #254 from IBM-Cloud/dev
Browse files Browse the repository at this point in the history
Promote dev to master
  • Loading branch information
jorge-ibm authored Jun 2, 2021
2 parents f2e99cf + f6988a8 commit 9b63e2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bluemix/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package bluemix
import "fmt"

// Version is the SDK version
var Version = VersionType{Major: 0, Minor: 5, Build: 2}
var Version = VersionType{Major: 0, Minor: 5, Build: 3}

// VersionType describe version info
type VersionType struct {
Expand Down
2 changes: 1 addition & 1 deletion common/file_helpers/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func CopyFile(src string, dest string) (err error) {
}
defer func() { _ = destFile.Close() }()

err = destFile.Chmod(srcStat.Mode())
err = os.Chmod(dest, srcStat.Mode())
if err != nil {
return
}
Expand Down

0 comments on commit 9b63e2d

Please sign in to comment.