Skip to content

Commit

Permalink
Merge pull request #185 from NodeFactoryIo/mmuftic/release-v0.5.1
Browse files Browse the repository at this point in the history
Pre-release v0.5.1
  • Loading branch information
mace authored Jan 25, 2021
2 parents 6ad9462 + 282a862 commit 208f656
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.5.0
version=0.5.1
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Changelog

## [unreleased]((https://github.com/NodeFactoryIo/vedran/tree/HEAD))
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.0...HEAD)
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.1...HEAD)

### Added

### Fix

### Changed

## [v0.5.1]((https://github.com/NodeFactoryIo/vedran/tree/v0.5.1))
[Full Changelog](https://github.com/NodeFactoryIo/vedran/compare/v0.5.0...v0.5.1)

### Added

Expand Down
2 changes: 1 addition & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ var startCmd = &cobra.Command{
PreRunE: func(cmd *cobra.Command, args []string) error {
DisplayBanner()
// create root dir
if _, err := os.Stat(rootDir); os.IsNotExist(err) {
if _, err := os.Stat(rootDir); os.IsNotExist(err) && rootDir != "" {
err = os.Mkdir(rootDir, 0700)
if err != nil {
log.Fatal("Unable to create root dir ", err)
Expand Down

0 comments on commit 208f656

Please sign in to comment.