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 4932558 commit 09713c5Copy full SHA for 09713c5
.github/workflows/ci.cli.yml
@@ -53,6 +53,8 @@ jobs:
53
- run: bin/bk test
54
- run: test $(pkgx +stark.com/foo -- stark) = not_much_u
55
- run: bin/bk audit
56
+ # check build can run twice, see https://github.com/pkgxdev/brewkit/issues/303
57
+ - run: bin/bk build
58
59
60
unit-tests:
build/build.ts
@@ -168,7 +168,8 @@ function make_toolchain() {
168
}
169
170
if (host().platform != "darwin") {
171
- const d = config.path.home.join('toolchain').mkdir('p')
+ // rm ∵ // https://github.com/pkgxdev/brewkit/issues/303
172
+ const d = config.path.home.join('toolchain').rm({ recursive: true }).mkdir('p')
173
174
const symlink = (names: string[], {to}: {to: string}) => {
175
for (const name of names) {
0 commit comments