diff options
author | Elliott Hughes <enh@google.com> | 2019-05-10 11:22:58 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-05-10 11:22:58 -0700 |
commit | 8a741eaecc8500d64c9c84c2d4ce754aef9a47fa (patch) | |
tree | be4248769d3d32a1f41ecc20ce80ea53a7b3d757 /cmds/svc | |
parent | ff58f1e378dbc090de8eb30c06305fd3d6407f1e (diff) | |
parent | fda05c96c17f969df7483cdbbeb2eb4d6092c3f8 (diff) |
Merge "Clean up some shell script copy & paste." am: b4012baaf4
am: fda05c96c1
Change-Id: I104862db5d787ffc14512bf1181332c8ca7ba872
Diffstat (limited to 'cmds/svc')
-rwxr-xr-x | cmds/svc/svc | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cmds/svc/svc b/cmds/svc/svc index 07b50fe6c7b5..c122e981e4c7 100755 --- a/cmds/svc/svc +++ b/cmds/svc/svc @@ -1,8 +1,3 @@ #!/system/bin/sh -# Script to start "am" on the device, which has a very rudimentary -# shell. -# -base=/system -export CLASSPATH=$base/framework/svc.jar -exec app_process $base/bin com.android.commands.svc.Svc $* - +export CLASSPATH=/system/framework/svc.jar +exec app_process /system/bin com.android.commands.svc.Svc "$@" |