Skip to content

Commit

Permalink
Remove "v" from the beginning of the Git tag referenced in the TF mod…
Browse files Browse the repository at this point in the history
…ule source.
  • Loading branch information
jimmycuadra committed Feb 22, 2017
1 parent 5d604d9 commit d55fdbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repository.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl<'a> Repository<'a> {
Repository {
name: matches.value_of("name").expect("clap should have required name"),
terraform_source: matches.value_of("terraform-source").unwrap_or(
concat!("github.com/InQuicker/kaws//terraform?ref=v", env!("CARGO_PKG_VERSION")),
concat!("github.com/InQuicker/kaws//terraform?ref=", env!("CARGO_PKG_VERSION")),
),
}
}
Expand Down

0 comments on commit d55fdbf

Please sign in to comment.