Skip to content

Commit

Permalink
fix: Fixed typo in adb permission error (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
kumar303 committed Jan 9, 2018
1 parent 6c00d11 commit cdb5b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/adb.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export default class ADBUtils {
for (const perm of permissions) {
if (!permissionsMap[perm]) {
throw new UsageError(
`Required ${perm} has not be granted for ${apk}` +
`Required ${perm} has not be granted for ${apk}. ` +
'Please grant them using the Android Settings ' +
'or using the following adb command:\n' +
`\t adb shell pm grant ${apk} ${perm}\n`
Expand Down

0 comments on commit cdb5b00

Please sign in to comment.