Skip to content

Commit

Permalink
NO COMMAS PLEASE
Browse files Browse the repository at this point in the history
  • Loading branch information
ceejbot authored and chrisdickinson committed Jan 17, 2020
1 parent 73bf523 commit cdd6b49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 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 = "vongform"
version = "0.1.1"
version = "0.1.2"
authors = ["Chris Dickinson <christopher.s.dickinson@gmail.com>"]
edition = "2018"

Expand Down
11 changes: 6 additions & 5 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,12 @@ async fn main() -> anyhow::Result<()> {
DirBuilder::new().recursive(true).create(&pb)?;

pb.push("Chart.yaml");
afs::write(&pb, format!(r#"apiVersion: 'v1',
description: 'Umbrella chart, generated on {}',
appVersion: '1.0',
name: chart,
version: '1.0.0-{}'"#, now.to_rfc2822(), now.timestamp())).await?;
afs::write(&pb, format!(r#"apiVersion: 'v1'
description: 'Umbrella chart, generated on {}'
appVersion: '1.0'
name: chart
version: '1.0.0-{}'
"#, now.to_rfc2822(), now.timestamp())).await?;
pb.pop();

pb.push("values.yaml");
Expand Down

0 comments on commit cdd6b49

Please sign in to comment.