1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-08-15 23:40:32 +03:00

fixed linting error and removed value from .env file

This commit is contained in:
Nathaniel Walser 2023-09-30 21:30:25 +02:00
parent d70be3abf9
commit d1a837b11d
2 changed files with 2 additions and 2 deletions

2
.env
View File

@ -1 +1 @@
CONFIG_DIRECTORY="C:\Users\Nathaniel Walser\Desktop\tabby"
# CONFIG_DIRECTORY="CONFIG_FILE_PATH"

View File

@ -30,4 +30,4 @@ export function loadConfig (): any {
export async function saveConfig (content: string): Promise<void> {
await writeFile(configPath, content, { encoding: 'utf8' })
await writeFile(configPath + '.backup', content, { encoding: 'utf8' })
}
}