We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b43d9ec commit dcc5ab1Copy full SHA for dcc5ab1
1 file changed
lib/compose.ts
@@ -1,4 +1,4 @@
1
-import { execFile as execFileSync } from 'child_process';
+import { execFile as execFileCb } from 'child_process';
2
import { promisify } from 'util';
3
import { randomUUID } from 'crypto';
4
import * as path from 'path';
@@ -23,7 +23,7 @@ import type {
23
ImageDescriptor,
24
} from './types';
25
26
-const execFile = promisify(execFileSync);
+const execFile = promisify(execFileCb);
27
28
/**
29
* Parse one or more compose files using compose-go, and return a normalized composition object
0 commit comments