nix store log

This commit is contained in:
IDONTSUDO 2023-12-14 23:04:45 +03:00
parent 5d0e5f7f1c
commit 0d140e58ca
13 changed files with 81 additions and 46 deletions

View file

@ -55,13 +55,13 @@ export class StackService extends TypedEvent<Iteration[]> implements IStackServi
}
async execStack(stackNumber: number, stackLayer: Iteration): Promise<void | boolean> {
const executorService = new ExecutorProgramService(this.path);
executorService.call(stackLayer.process.process.type, stackLayer.process.process.command);
const filesChangeNotifierService = new FilesChangeNotifierService(this.path);
filesChangeNotifierService.call();
const result = await this.waitEvent<Result<ExecError | SpawnError, ExecutorResult>>(executorService);
console.log(200);
await delay(100);
if (result.isSuccess()) {
this.callStack[stackNumber].result = result.value;