Skip to content

Commit d70998c

Browse files
committed
fix
1 parent cb93aa5 commit d70998c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/test_publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ jobs:
3232
runs-on: windows-latest
3333
steps:
3434
- uses: actions/checkout@v4
35+
- name: setup
36+
run: |
37+
choco install ninja
3538
- uses: nttld/setup-ndk@v1
3639
id: setup-ndk
3740
with:
@@ -48,6 +51,9 @@ jobs:
4851
runs-on: macos-latest
4952
steps:
5053
- uses: actions/checkout@v4
54+
- name: setup
55+
run: |
56+
brew install ninja
5157
- uses: nttld/setup-ndk@v1
5258
id: setup-ndk
5359
with:

example/add/lib/src/hook_helpers/hook_helpers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Future<void> runBuild(BuildInput input, BuildOutputBuilder output, Uri sourceDir
1010
sourceDir: sourceDir,
1111
buildMode: BuildMode.release,
1212
defines: {
13-
'CMAKE_INSTALL_PREFIX': '${input.outputDirectory.toFilePath()}/install',
13+
'CMAKE_INSTALL_PREFIX': input.outputDirectory.resolve('install').toFilePath(),
1414
},
1515
targets: ['install'],
1616
);

0 commit comments

Comments
 (0)