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 68ddbe4 commit 7ceeaf0Copy full SHA for 7ceeaf0
src/drivers/github.js
@@ -265,7 +265,8 @@ class Github {
265
);
266
267
return spawn(resolve(workdir, 'run.sh'), {
268
- shell: true
+ shell: true,
269
+ env: {}
270
});
271
} catch (err) {
272
throw new Error(`Failed preparing GitHub runner: ${err.message}`);
src/drivers/gitlab.js
@@ -204,7 +204,7 @@ class Gitlab {
204
--docker-runtime "${gpu ? 'nvidia' : ''}" \
205
${single ? '--max-builds 1' : ''}`;
206
207
- return spawn(command, { shell: true });
+ return spawn(command, { shell: true, env: {} });
208
209
throw new Error(`Failed preparing Gitlab runner: ${err.message}`);
210
}
0 commit comments