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 7c96930 commit c599809Copy full SHA for c599809
packages/build/src/extensions/python.ts
@@ -122,7 +122,10 @@ class PythonExtension implements BuildExtension {
122
}
123
124
125
-export const run = async (scriptArgs: string[] = [], options: ExecaOptions = {}) => {
+export const run = async (
126
+ scriptArgs: string[] = [],
127
+ options: ExecaOptions = {}
128
+): Promise<ReturnType<typeof execa>> => {
129
const pythonBin = process.env.PYTHON_BIN_PATH || "python";
130
131
const result = await execa({
0 commit comments