You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -88,14 +88,15 @@ export class InstallScriptAcquisitionWorker implements IInstallScriptAcquisition
88
88
if(!fs.existsSync(filePath))
89
89
{
90
90
// Create an empty file, as proper-lockfile fails to lock a file if file dne
91
+
this.eventStream.post(newDotnetFileWriteRequestEvent(`File did not exist upon write request.`,newDate().toISOString(),filePath));
91
92
fs.writeFileSync(filePath,'');
92
93
}
93
94
94
-
this.eventStream.post(newDotnetLockAttemptingAcquireEvent(`Lock Acqusition request to begin: ${directoryLockPath} for ${filePath}`,newDate().toISOString()));
95
+
this.eventStream.post(newDotnetLockAttemptingAcquireEvent(`Lock Acqusition request to begin.`,newDate().toISOString(),directoryLockPath,filePath));
0 commit comments