Skip to content

Commit f63cad9

Browse files
committed
fix script
1 parent cfef1b3 commit f63cad9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

measure/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"private": true,
55
"scripts": {
66
"android": "cd android && ./gradlew installRelease",
7+
"androidi18n": "npm run android -- --project-prop i18n=true",
78
"start": "node ./scripts/measure",
89
"generateReadmeTable": "node ./scripts/resultsJsonToMarkdown"
910
},
@@ -16,4 +17,4 @@
1617
"devDependencies": {
1718
"shell-utils": "1.x.x"
1819
}
19-
}
20+
}

measure/scripts/measure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function run() {
4545
const resultLines = _.split(resultsStr, '\n');
4646
parseAndPrintTestResults(resultLines);
4747

48-
exec.execSync(`find ./android/app/build/intermediates/transforms/mergeJniLibs/release -name libjsc.so | xargs ls -lh`);
48+
exec.execSync(`find ./android/app/build/intermediates/transforms/mergeJniLibs/release | xargs ls -lh`);
4949
}
5050

5151
function parseAndPrintTestResults(resultLines) {

0 commit comments

Comments
 (0)