Skip to content

Commit

Permalink
fix(lib/pkg/flaskfile): add ending newline in to_string()
Browse files Browse the repository at this point in the history
  • Loading branch information
comfysage committed Feb 7, 2024
1 parent 254ddcc commit 11864ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saku-lib/pkg/flaskfile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ impl PkgBuild {
}

pub fn to_string(&self) -> String {
format!("pkgname=\"{}\"\nurl=\"{}\"\npkgdesc=\"{}\"", self.pkgname, self.url, self.pkgdesc)
format!("pkgname=\"{}\"\nurl=\"{}\"\npkgdesc=\"{}\"\n", self.pkgname, self.url, self.pkgdesc)
}
}

Expand Down

0 comments on commit 11864ac

Please sign in to comment.