diff --git a/src/k16/kl/commands/containers.clj b/src/k16/kl/commands/containers.clj index a5ac58d..f5dd581 100644 --- a/src/k16/kl/commands/containers.clj +++ b/src/k16/kl/commands/containers.clj @@ -18,7 +18,7 @@ :description "Select containers to run" :opts [{:option "module" - :short 0 + :short "m" :type :string}] :runs (fn [props] @@ -43,7 +43,7 @@ :description "Select containers to run" :opts [{:option "module" - :short 0 + :short "m" :type :string}] :runs (fn [props] @@ -90,7 +90,7 @@ :description "Stop all running containers " :opts [{:option "module" - :short 0 + :short "m" :type :string}] :runs (fn [props] diff --git a/src/k16/kl/commands/endpoints.clj b/src/k16/kl/commands/endpoints.clj index 7881574..f1ccebd 100644 --- a/src/k16/kl/commands/endpoints.clj +++ b/src/k16/kl/commands/endpoints.clj @@ -38,10 +38,11 @@ :description "List all endpoints" :opts [{:option "module" - :short 0 + :short "m" :type :string} {:option "service" + :short 0 :type :string}] :runs list-endpoints}]}) diff --git a/src/k16/kl/commands/modules.clj b/src/k16/kl/commands/modules.clj index 7e7fdff..7053a64 100644 --- a/src/k16/kl/commands/modules.clj +++ b/src/k16/kl/commands/modules.clj @@ -33,11 +33,12 @@ :description "Pull down changes to a module" :opts [{:option "module" - :short 0 + :short "m" :type :string} {:option "update" :default false + :short 0 :type :with-flag}] :runs pull!} @@ -46,11 +47,12 @@ :description "Resolve the latest sha's of a module. This is the same as `pull --update`" :opts [{:option "module" - :short 0 + :short "m" :type :string} {:option "force" :default false + :short 0 :type :with-flag}] :runs (fn [props] diff --git a/src/k16/kl/commands/routes.clj b/src/k16/kl/commands/routes.clj index 595ab90..335d3a0 100644 --- a/src/k16/kl/commands/routes.clj +++ b/src/k16/kl/commands/routes.clj @@ -91,7 +91,7 @@ :description "List all routes" :opts [{:option "module" - :short 0 + :short "m" :type :string} {:option "output" @@ -105,7 +105,7 @@ :description "Apply any route changes" :opts [{:option "module" - :short 0 + :short "m" :type :string}] :runs apply-routes!}]}) diff --git a/src/k16/kl/commands/services.clj b/src/k16/kl/commands/services.clj index b2cf88d..f42c72b 100644 --- a/src/k16/kl/commands/services.clj +++ b/src/k16/kl/commands/services.clj @@ -90,7 +90,7 @@ :default "table" :type :string}, {:option "module" - :short 0 + :short "m" :type :string}] :runs list-services}