Skip to content

Commit

Permalink
fix: adb wrong command
Browse files Browse the repository at this point in the history
  • Loading branch information
aeddi committed Dec 2, 2019
1 parent 3e63a31 commit c20fafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/packages/berty-app/Makefile
Expand Up @@ -381,7 +381,7 @@ run.android.store: config := production
run.android.store: target := store
run.android.store: run.android
run.android: platform := android
run.android: device := $(shell which adb >/dev/null && (adb adb devices | tail +2 | head -1 | cut -f 1) || echo "missing-adb-binary")
run.android: device := $(shell which adb >/dev/null && (adb devices | tail +2 | head -1 | cut -f 1) || echo "missing-adb-binary")
run.android: deps.android run

run.web.debug: config := development
Expand Down

0 comments on commit c20fafe

Please sign in to comment.