From 6e28b3e740f39e5078bdc57318f99903bc545801 Mon Sep 17 00:00:00 2001 From: Martin Pinto-Bazurco Mendieta Date: Sun, 8 Jan 2017 19:23:49 +0100 Subject: [PATCH] Added alias for "push", "run" and "call". (#480) * Added alias for "push", "run" and "call". Fix #477 * Changed order of aliases documentation. --- fn/main.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fn/main.go b/fn/main.go index a29cabf3b..d60917b72 100644 --- a/fn/main.go +++ b/fn/main.go @@ -15,6 +15,9 @@ var aliases = map[string]cli.Command{ "build": build(), "bump": bump(), "deploy": deploy(), + "push": push(), + "run": run(), + "call": call(), } func aliasesFn() []cli.Command { @@ -53,6 +56,9 @@ ALIASES: build (images build) bump (images bump) deploy (images deploy) + run (images run) + call (routes call) + push (images push) GLOBAL OPTIONS: {{range $index, $option := .VisibleFlags}}{{if $index}}