Skip to content

Commit

Permalink
Fix GN_EXTRA_ARGS generation syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
codebytere committed Feb 7, 2024
1 parent 9d3d82e commit 0de2480
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mac-build.yml
Expand Up @@ -248,9 +248,9 @@ jobs:
echo "CHROMIUM_BUILDTOOLS_PATH=$(pwd)/src/buildtools" >> $GITHUB_ENV
if [[ ${{ matrix.build-type }} == "darwin" ]]; then
echo "GN_EXTRA_ARGS='target_cpu = "arm64"'" >> $GITHUB_ENV
echo "GN_EXTRA_ARGS=target_cpu = 'arm64'" >> $GITHUB_ENV
else
echo "GN_EXTRA_ARGS='is_mas_build = true target_cpu = "arm64"'" >> $GITHUB_ENV
echo "GN_EXTRA_ARGS=is_mas_build = true target_cpu = 'arm64'" >> $GITHUB_ENV
echo "MAS_BUILD=true" >> $GITHUB_ENV
fi
- name: Fix Sync
Expand Down

0 comments on commit 0de2480

Please sign in to comment.