Skip to content

Commit

Permalink
Merge pull request #558 from dennisameling/build-installers-arm64
Browse files Browse the repository at this point in the history
ARM64: Install clang on build-installers flavor
  • Loading branch information
dscho authored Dec 18, 2022
2 parents ff5d9f1 + 9303ff2 commit 8cebbfb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ async function installArm64Dependencies(
'mingw-w64-clang-aarch64-pcre2',
'mingw-w64-clang-aarch64-libssp'
]
if (flavor === 'full' || flavor === 'makepkg-git') {
if (
flavor === 'full' ||
flavor === 'makepkg-git' ||
flavor === 'build-installers'
) {
packages.push(
'mingw-w64-clang-aarch64-toolchain',
'mingw-w64-clang-aarch64-asciidoc'
Expand Down

0 comments on commit 8cebbfb

Please sign in to comment.