File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ platform_cache(() => config.path.home).mkdir('p') // we’ve indeed found thing
120120
121121const proc = new Deno.Command(script.string, {clearEnv: true, env}).spawn()
122122const rv = await proc.status
123- if (!rv.success) throw new Error(`${rv.code} ${rv.signal}`)
123+ if (!rv.success) throw new Error(`UR BUILD FAILED WITH CODE ${rv.code} & SIGNAL ${rv.signal}`)
124124
125125/// move installation products to destination
126126await gum(`rsync install to final path`)
Original file line number Diff line number Diff line change @@ -103,4 +103,4 @@ platform_cache(() => config.path.home).mkdir('p') // we’ve indeed found thing
103103
104104const proc = new Deno.Command(script.string, {clearEnv: true, env}).spawn()
105105const rv = await proc.status
106- if (!rv.success) throw new Error(`${rv.code} ${rv.signal}`)
106+ if (!rv.success) throw new Error(`UR TEST FAILED WITH CODE ${rv.code} & SIGNAL ${rv.signal}`)
You can’t perform that action at this time.
0 commit comments