summaryrefslogtreecommitdiff
path: root/cmds/content
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-05-09 22:01:14 -0700
committerElliott Hughes <enh@google.com>2019-05-09 22:01:14 -0700
commit5a03b69fc8723a2e4dcfb5ffe420cad9c8bff85c (patch)
treea254280735fae2424ffd70694724aaa9dc6484db /cmds/content
parent8e63c9cc01ffaa1c0929c45569dabbd6b788f0da (diff)
Clean up some shell script copy & paste.
Remove apparently meaningless comment that's been copy & pasted all over. Remove trailing whitespace. Consistently use "$@". Inline single-use constant. Test: treehugger Change-Id: Ie3b3e285cd35ecff9e6fdb7144fe4bbd04e42452
Diffstat (limited to 'cmds/content')
-rwxr-xr-xcmds/content/content7
1 files changed, 2 insertions, 5 deletions
diff --git a/cmds/content/content b/cmds/content/content
index f1bfe1737c5a..91f2dfb16ac9 100755
--- a/cmds/content/content
+++ b/cmds/content/content
@@ -1,6 +1,3 @@
#!/system/bin/sh
-# Script to start "content" on the device, which has a very rudimentary shell.
-base=/system
-export CLASSPATH=$base/framework/content.jar
-exec app_process $base/bin com.android.commands.content.Content "$@"
-
+export CLASSPATH=/system/framework/content.jar
+exec app_process /system/bin com.android.commands.content.Content "$@"