diff options
author | Sven Gothel <[email protected]> | 2011-10-04 02:49:07 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-10-04 02:49:07 +0200 |
commit | d9c11aa31f5aae6e93715c0e732d76fd10375f18 (patch) | |
tree | de886e3fd34e569044408de248add9cfead723e2 /make/scripts/adb-reinstall-all.sh | |
parent | a095b7da968533120306ff9ef019685b6698272c (diff) |
adb scripts: pass through '$*' for device naming, ie '-s device00:5555' or '-s 390adf8383'tegra-graph-shader_dosplit_nodiscard-ok
Diffstat (limited to 'make/scripts/adb-reinstall-all.sh')
-rwxr-xr-x | make/scripts/adb-reinstall-all.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make/scripts/adb-reinstall-all.sh b/make/scripts/adb-reinstall-all.sh index dcbd1c861..db366c4b8 100755 --- a/make/scripts/adb-reinstall-all.sh +++ b/make/scripts/adb-reinstall-all.sh @@ -1,4 +1,4 @@ sdir=`dirname $0` -$sdir/adb-uninstall-all.sh -$sdir/adb-install-all.sh +$sdir/adb-uninstall-all.sh $* +$sdir/adb-install-all.sh $* |