summaryrefslogtreecommitdiffstats
path: root/extensions/shell/README
diff options
context:
space:
mode:
authorzork <zork@chromium.org>2014-11-17 14:40:58 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-17 22:41:12 +0000
commit62c0f69893232578d8d5d5ecf9b1374f24c404bd (patch)
tree31d7094001213a122e2bb893521fe740e62faa60 /extensions/shell/README
parentd7a7abeaf1711c9208b21fb578f622efaf553144 (diff)
downloadchromium_src-62c0f69893232578d8d5d5ecf9b1374f24c404bd.zip
chromium_src-62c0f69893232578d8d5d5ecf9b1374f24c404bd.tar.gz
chromium_src-62c0f69893232578d8d5d5ecf9b1374f24c404bd.tar.bz2
app_shell: Change flag for loading apps to --load-app and only launch
the first one. BUG=432359 Review URL: https://codereview.chromium.org/727963004 Cr-Commit-Position: refs/heads/master@{#304500}
Diffstat (limited to 'extensions/shell/README')
-rw-r--r--extensions/shell/README9
1 files changed, 7 insertions, 2 deletions
diff --git a/extensions/shell/README b/extensions/shell/README
index 52e64dd..c080677 100644
--- a/extensions/shell/README
+++ b/extensions/shell/README
@@ -10,8 +10,13 @@ app_shell is only officially supported on Chrome OS.
# How to run
-$ app_shell --app-shell-app-path=/path/to/extension
+$ app_shell --load-apps=/path/to/extension
# For example, you can try the calculator app:
-$ app_shell --app-shell-app-path=chrome/common/extensions/docs/examples/apps/calculator/app/
+$ app_shell --load-apps=chrome/common/extensions/docs/examples/apps/calculator/app/
+
+# To load multiple apps, specify them in a comma separated list. The first app
+# will be launched:
+
+$ app_shell --load-apps=/path/to/extension1,/path/to/extension2