Skip to content

Commit 5a55e8f

Browse files
committed
feat: prepare artifact build
1 parent 0c1c6fd commit 5a55e8f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Prepare
3434
run: |
3535
if [[ "${{ matrix.pack.tag}}" = "alpine" ]]; then
36-
apk add --no-cache cmake build-base
36+
apk add --no-cache cmake build-base git
3737
else
3838
apt-get update
3939
apt-get install -y cmake

scripts/flac-prebuild.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ const run = async (command, args = [], pipe = true) => {
2323
const proc = cp.spawn(command, args, {
2424
encoding: 'utf-8',
2525
stdio: pipe ? 'inherit' : undefined,
26+
shell: process.platform === 'win32',
2627
})
2728

2829
await once(proc, 'exit')

0 commit comments

Comments
 (0)