Skip to content

Commit

Permalink
save config data to shift.json on working dir
Browse files Browse the repository at this point in the history
  • Loading branch information
razzkumar committed Oct 10, 2019
1 parent c6de886 commit 3361947
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/internal/setup/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,11 @@ func Run() {
},
}

projectRequestJSON, _ := json.Marshal(projectRequest)
// projectRequestJSON, _ := json.Marshal(projectRequest)

fmt.Println(string(projectRequestJSON))
// fmt.Println(string(projectRequestJSON))

jsonData, _ := json.MarshalIndent(projectRequestJSON, "", " ")
jsonData, _ := json.MarshalIndent(projectRequest, "", " ")

currentDir, _ := os.Getwd()
fileName := currentDir + "/shift.json"
Expand Down

0 comments on commit 3361947

Please sign in to comment.