Skip to content

Commit

Permalink
fix: bump to 0.1.6 and fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
madonuko committed Jun 17, 2024
1 parent f41de0d commit 5753ad9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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 = "readymade"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "The Ado Installer"

Expand Down
1 change: 1 addition & 0 deletions src/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ pub fn generate_recipe(state: &InstallationState) -> Result<Recipe> {

#[cfg(not(debug_assertions))]
pub fn run_albius(recipe: &Recipe) -> Result<()> {
use std::io::Write;
let recipe_file = tempfile::Builder::new().suffix(".albius.json").tempfile()?;
(recipe_file.as_file()).write(serde_json::to_string(recipe)?.as_bytes())?;

Expand Down

0 comments on commit 5753ad9

Please sign in to comment.