1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fixing typo

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2021-08-26 15:08:21 +03:00 committed by Sebastian Malton
parent dacb575532
commit 87926c2498

View File

@ -34,6 +34,6 @@ export async function saveKubeconfig(config: KubeConfig, path: string) {
await fs.promises.rename(tmpFilePath, path);
release();
}).catch((e) => {
throw new Error(`Failed to aquire lock file.\n${e}`);
throw new Error(`Failed to acquire lock file.\n${e}`);
});
}