fix(script): fix clean-store script

This commit is contained in:
George Lima 2019-04-11 18:03:31 -03:00
parent 3ed024cf67
commit 86aad317fe
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import path from 'path';
import fs from 'fs';
import { app } from 'electron';
fs.unlink(path.join(app.getPath('appData'), 'zec-react-wallet', 'config.json'), err => {
fs.unlink(path.join(app.getPath('appData'), 'zepio', 'config.json'), err => {
if (err) {
console.log("Couldn't remove config.json", err);
} else {