Skip to content

Commit fb2829b

Browse files
committed
Fix args
1 parent 443565b commit fb2829b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/compile_sqlite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
- name: Compile sqlite3
119119
# if: steps.cache_build.outputs.cache-hit != 'true'
120120
run: |
121-
dart run tool/compile_sqlite.dart
121+
dart run tool/compile_sqlite.dart ${{ matrix.arch }}
122122
123123
- name: Upload sqlite3 binaries
124124
uses: actions/upload-artifact@v4

tool/compile_sqlite.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ void main(List<String> args) async {
4343
...defines,
4444
'/I',
4545
sqlite3Ciphers ? r'sqlite3-src\sqlite3mc' : 'sqlite3-src\sqlite3',
46-
'-o',
47-
'/Fe:out\win-$abiName-sqlite3${sqlite3Ciphers ? 'mc' : ''}.dll'
46+
'/Fe:out\\win-$abiName-sqlite3${sqlite3Ciphers ? 'mc' : ''}.dll'
4847
];
4948

5049
print('Running cl ${args.join(' ')}');

0 commit comments

Comments
 (0)