From bfec710e083d89bd54a55dd5e5871e4e20f666be Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jul 2019 10:17:29 +0200 Subject: [PATCH 1/2] removed unused file --- commands/.test-config.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 commands/.test-config.yml diff --git a/commands/.test-config.yml b/commands/.test-config.yml deleted file mode 100644 index ceab9f42069..00000000000 --- a/commands/.test-config.yml +++ /dev/null @@ -1,3 +0,0 @@ -proxy_type: auto -sketchbook_path: /home/bcmi/Arduino -arduino_data: /home/bcmi/.arduino15 From b13c0da5ecf8cd513abf01fe9a536348b1a607a8 Mon Sep 17 00:00:00 2001 From: Massimiliano Pippi Date: Thu, 25 Jul 2019 10:22:24 +0200 Subject: [PATCH 2/2] make Arduino15 the default data dir on OSX --- configs/directories.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/directories.go b/configs/directories.go index 1bf924ea8be..60c47bd3308 100644 --- a/configs/directories.go +++ b/configs/directories.go @@ -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 {