We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0989b41 commit 00832f6Copy full SHA for 00832f6
src/dependencies.ts
@@ -375,6 +375,8 @@ export class Dependencies {
375
}
376
377
const validCombinations = [
378
+ 'android-amd64',
379
+ 'android-arm64',
380
'darwin-amd64',
381
'darwin-arm64',
382
'freebsd-386',
src/options.ts
@@ -138,7 +138,7 @@ export class Options {
138
let contents: string[] = [];
139
let currentSection = '';
140
141
- const found = {};
+ const found: Record<string, boolean> = {};
142
let lines = content.split('\n');
143
for (var i = 0; i < lines.length; i++) {
144
let line = lines[i];
0 commit comments