-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ecs-run" | ||
version = "0.1.1" | ||
version = "0.2.0" | ||
authors = ["Erik Dalén <[email protected]>"] | ||
|
||
[dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ This can for example be used to run a rake task on a Rails service in ECS. | |
## Usage | ||
|
||
``` | ||
ecs-run 0.1.1 | ||
ecs-run 0.2.0 | ||
Erik Dalén <[email protected]> | ||
USAGE: | ||
|
@@ -20,6 +20,7 @@ FLAGS: | |
OPTIONS: | ||
-n, --name <CONTAINER> Name of container to run command in | ||
-E, --env <ENV>... Environment variable to pass to container, VAR=value | ||
ARGS: | ||
<CLUSTER> Name of cluster to run in | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ use std::{thread, time}; | |
|
||
fn main() { | ||
let matches = App::new("ecs-run") | ||
.version("0.1.1") | ||
.version("0.2.0") | ||
.author("Erik Dalén <[email protected]>") | ||
.setting(clap::AppSettings::TrailingVarArg) | ||
.arg( | ||
|