Skip to content

Commit

Permalink
Update kig messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ktwrd committed Jun 2, 2024
1 parent 6847ecc commit 1fa795b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ impl RunnerContext
}
out_loc.push_str(format!("presz_{}", helper::generate_rand_str(12)).as_str());

info!("[RunnerContext::download_package] writing output file to {}", out_loc);
info!("[RunnerContext::download_package] writing to {}", out_loc);
helper::download_with_progress(
format!("{}{}", &av.remote_info.base_url, version.file.expect("No URL for latest package!")),
out_loc.clone()).await?;
Expand Down
1 change: 1 addition & 0 deletions src/workflows/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ impl InstallWorkflow {
pub async fn install_with_remote_version(ctx: &mut RunnerContext, version_id: usize, version: RemoteVersion)
-> Result<(), BeansError>
{
println!("{:=>60}\nInstalling version {} to {}\n{0:=>60}", "=", version_id, &ctx.sourcemod_path);
let presz_loc = RunnerContext::download_package(version).await?;
Self::install_from(presz_loc.clone(), ctx.sourcemod_path.clone(), Some(version_id)).await?;
if helper::file_exists(presz_loc.clone()) {
Expand Down

0 comments on commit 1fa795b

Please sign in to comment.