Skip to content
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.

Commit

Permalink
Fix #265
Browse files Browse the repository at this point in the history
  • Loading branch information
reis authored Aug 19, 2022
1 parent f99fe6d commit b49ed31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wsEvents/PatchApp.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ async function afterBuild (ws) {
.replace('v', '')
.split('-')[0];
if (!microGVersion) {
await actualExec('adb install revanced/microg.apk');
await actualExec(`adb install ${global.jarNames.microG}`);
ws.send(
JSON.stringify({
event: 'patchLog',
log: 'MicroG has been installed.'
})
);
} else if (microGVersion !== currentMicroGVersion) {
await actualExec('adb install revanced/microg.apk');
await actualExec(`adb install ${global.jarNames.microG}`);
ws.send(
JSON.stringify({
event: 'patchLog',
Expand Down

0 comments on commit b49ed31

Please sign in to comment.