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.
2 parents 968c64d + bf2a2b5 commit d017fa0Copy full SHA for d017fa0
src/alacritty.js
@@ -40,7 +40,7 @@ class Alacritty {
40
this.configFile = `${this.basePath}/alacritty.yml`;
41
if (!fs.existsSync(this.configFile)) {
42
log(warning("Config file not found"));
43
- fs.writeFileSync(this.configFile);
+ fs.openSync(this.configFile, "a");
44
log("Created config file =>");
45
log(chalk.blue(this.configFile));
46
}
0 commit comments