Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dalen committed Jun 13, 2018
1 parent 6cd3cc3 commit 508c58a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ecs-run"
version = "0.1.0"
version = "0.1.1"
authors = ["Erik Dalén <erik.gustav.dalen@gmail.com>"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
ecs-run 0.1.1
Erik Dalén <erik.gustav.dalen@gmail.com>
USAGE:
Expand Down
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use std::{thread, time};

fn main() {
let matches = App::new("ecs-run")
.version("0.1.0")
.version("0.1.1")
.author("Erik Dalén <erik.gustav.dalen@gmail.com>")
.setting(clap::AppSettings::TrailingVarArg)
.arg(
Expand Down Expand Up @@ -167,7 +167,7 @@ fn get_container(
Some(n) => containers
.iter()
.find(|c| c.name == Some(n.to_string()))
.expect(format!("No container called {} found in task", &n))
.expect(&format!("No container called {} found in task", &n))
.clone(),
None => {
if containers.len() != 1 {
Expand Down

0 comments on commit 508c58a

Please sign in to comment.