mirror of
https://github.com/meowstercatel/r1-apk-patcher.git
synced 2024-12-22 23:25:20 -06:00
something?
This commit is contained in:
parent
3d4485896f
commit
d7f5200b29
1 changed files with 1 additions and 1 deletions
2
utils.js
2
utils.js
|
@ -97,7 +97,7 @@ function replaceStringInManifest(name, value) {
|
|||
const data = fs.readFileSync(manifest, "utf-8")
|
||||
let arr = data.split(" ");
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const line = arr[i];
|
||||
let line = arr[i];
|
||||
if(line.includes(name)) {
|
||||
line = `${name}=${value}`
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue