From 2575b268d629fb232bf81ebd58935061aa320506 Mon Sep 17 00:00:00 2001 From: pyro Date: Wed, 20 May 2026 15:53:21 -0500 Subject: [PATCH] fixed a couple warnings in the install script --- src/install.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/install.rs b/src/install.rs index a818c94..58fb07f 100644 --- a/src/install.rs +++ b/src/install.rs @@ -1,4 +1,4 @@ -use fs_extra::dir::{CopyOptions, copy, create}; +use fs_extra::dir::{CopyOptions, copy}; use std::env; use std::error::Error; use std::fs::{File, create_dir_all, read_dir, remove_dir_all}; @@ -74,7 +74,7 @@ pub fn install() -> Result<(), Box> { println!("downloading default notes and modules..."); create_dir_all("./temp")?; env::set_current_dir("./temp")?; - let (git_clone_status) = Command::new("git") + let git_clone_status = Command::new("git") .arg("clone") .arg("https://git.pyro.monster/pyro/tetanus.git") .status()?