We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d7639b commit 142c3e2Copy full SHA for 142c3e2
lib/generator/index.js
@@ -9,7 +9,8 @@ import {
9
selectionSuccess,
10
noTestFromSelectionWarning,
11
templateGenSuccess,
12
- templateGenFailed
+ templateGenFailed,
13
+ failedToCreateFolderWarning
14
} from "../notifications";
15
16
const getUserSettings = () => {
@@ -29,7 +30,7 @@ const createDir = filePath => {
29
30
return true;
31
} catch (err) {
32
console.error(err);
- atom.notifications.addWarning("Failed to create directory");
33
+ atom.notifications.addWarning(failedToCreateFolderWarning);
34
return false;
35
}
36
};
0 commit comments