From 75fc052e2aa0eaa05a54b23fabb0c06b587949ed Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Mon, 4 Apr 2016 21:18:55 +0900 Subject: [PATCH] Take care of non-existing directory --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b8621cb..52cde656 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,9 +13,9 @@ The `electron-mattermost` project is now the official desktop application for th - Rename the executable file from `electron-mattermost` to `Mattermost` - The configuration directory is also different from previous versions. - Should execute following command to take over `config.json`. - - Windows: `copy %APPDATA%\electron-mattermost\config.json %APPDATA%\Mattermost\config.json` - - OS X: `cp ~/Library/Application\ Support/electron-mattermost/config.json ~/Library/Application\ Support/Mattermost/config.json` - - Linux: `cp ~/.config/electron-mattermost/config.json ~/.config/Mattermost/config.json` + - Windows: `mkdir %APPDATA%\Mattermost & copy %APPDATA%\electron-mattermost\config.json %APPDATA%\Mattermost\config.json` + - OS X: `ditto ~/Library/Application\ Support/electron-mattermost/config.json ~/Library/Application\ Support/Mattermost/config.json` + - Linux: `mkdir -p ~/.config/Mattermost && cp ~/.config/electron-mattermost/config.json ~/.config/Mattermost/config.json` ### Improvements