Skip to content

Commit

Permalink
Use same default data dir as the IDE on OSX (#310)
Browse files Browse the repository at this point in the history
* removed unused file

* make Arduino15 the default data dir on OSX
  • Loading branch information
masci authored Jul 25, 2019
1 parent 8292709 commit bbf497e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions commands/.test-config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion configs/directories.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func getDefaultArduinoDataDir() (*paths.Path, error) {
case "linux":
return paths.New(userHomeDir).Join(".arduino15"), nil
case "darwin":
return paths.New(userHomeDir).Join("Library", "arduino15"), nil
return paths.New(userHomeDir).Join("Library", "Arduino15"), nil
case "windows":
localAppDataPath, err := win32.GetLocalAppDataFolder()
if err != nil {
Expand Down

0 comments on commit bbf497e

Please sign in to comment.