Browse Source

Fix fig run entrypoint option

Slipped through because Wercker didn't report build status.

Signed-off-by: Ben Firshman <[email protected]>
Ben Firshman 11 years ago
parent
commit
d2385e3c2c
1 changed files with 7 additions and 7 deletions
  1. 7 7
      fig/cli/main.py

+ 7 - 7
fig/cli/main.py

@@ -264,13 +264,13 @@ class TopLevelCommand(Command):
         Usage: run [options] SERVICE [COMMAND] [ARGS...]
 
         Options:
-            -d         Detached mode: Run container in the background, print
-                       new container name.
-            --entrypoint  Override the entrypoint of the image.
-            --no-deps  Don't start linked services.
-            --rm       Remove container after run. Ignored in detached mode.
-            -T         Disable pseudo-tty allocation. By default `fig run`
-                       allocates a TTY.
+            -d                Detached mode: Run container in the background, print
+                              new container name.
+            --entrypoint CMD  Override the entrypoint of the image.
+            --no-deps         Don't start linked services.
+            --rm              Remove container after run. Ignored in detached mode.
+            -T                Disable pseudo-tty allocation. By default `fig run`
+                              allocates a TTY.
         """
         service = project.get_service(options['SERVICE'])