Skip to content

Commit a3fbd1b

Browse files
committed
ci: cleanup
1 parent 47416c5 commit a3fbd1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,17 +98,17 @@ jobs:
9898
working-directory: myApp
9999
run: |
100100
cat <<EOT > _fix_ndk_version.js
101-
const fs = require("fs");
102-
const path = require("path");
101+
const fs = require('fs');
102+
const path = require('path');
103103
104104
const appGradlePath = path.resolve(
105105
__dirname,
106-
"App_Resources/Android/app.gradle"
106+
'App_Resources/Android/app.gradle'
107107
);
108108
let contents = fs.readFileSync(appGradlePath);
109109
contents = contents.toString().replace(
110-
"defaultConfig {",
111-
`ndkVersion "22.1.7171670"\n defaultConfig {`
110+
'defaultConfig {',
111+
'ndkVersion "22.1.7171670"\n defaultConfig {'
112112
);
113113
fs.writeFileSync(appGradlePath, contents);
114114
EOT

0 commit comments

Comments
 (0)