File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,8 @@ if (env['GITHUB_TOKEN']) {
121121 env['GH_TOKEN'] = env['GITHUB_TOKEN']
122122}
123123
124+ config.path.cache.mkdir('p') // we’ve indeed found things to break without this
125+
124126const proc = new Deno.Command(script.string, {clearEnv: true, env}).spawn()
125127const rv = await proc.status
126128if (!rv.success) throw new Error(`${rv.code} ${rv.signal}`)
Original file line number Diff line number Diff line change @@ -99,6 +99,8 @@ if (env['GITHUB_TOKEN']) {
9999 env['GH_TOKEN'] = env['GITHUB_TOKEN']
100100}
101101
102+ config.path.cache.mkdir('p') // we’ve indeed found things to break without this
103+
102104const proc = new Deno.Command(script.string, {clearEnv: true, env}).spawn()
103105const rv = await proc.status
104106if (!rv.success) throw new Error(`${rv.code} ${rv.signal}`)
You can’t perform that action at this time.
0 commit comments