[bugfix] check if symlink is supported on current filesystem before linking

This commit is contained in:
MathieuG-P
2025-01-14 16:23:45 +01:00
parent e4766f8a25
commit e3fef23ef0
12 changed files with 42 additions and 2 deletions
@@ -21,7 +21,7 @@ export class VersionFolderLinkerService {
return VersionFolderLinkerService.instance;
}
private readonly KNOWN_ERROR_CODES = ["EPERM", "EACCES", "ENOSPC"];
private readonly KNOWN_ERROR_CODES = ["EPERM", "EACCES", "ENOSPC", "LinkingNotSupported"];
private readonly ipcService: IpcService;
private readonly progress: ProgressBarService;