Skip to content

Commit

Permalink
Force remove files
Browse files Browse the repository at this point in the history
  • Loading branch information
imurchie committed Jan 11, 2016
1 parent 550287a commit c1b88dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/android-helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ helpers.removeRemoteApks = async function (adb, exceptMd5s = null) {
});
for (let apk of apks) {
logger.info(`Will remove ${apk}`);
await adb.shell(['rm', apk]);
await adb.shell(['rm', '-f', apk]);
}
};

Expand Down

0 comments on commit c1b88dd

Please sign in to comment.