Skip to content

Commit

Permalink
Refactor(environment.rs): Reinstall Implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
WillKirkmanM committed May 3, 2023
1 parent f821728 commit fa22b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::get_path;
pub async fn open_environment(environment: String) {
let editor = get_editor();

let path = get_path(environment.clone()).await;
let path = get_path(&environment).await;
let environment_path = path.split("/").collect::<Vec<&str>>()[0].to_owned() + "/" + &environment;

let beaches_path = match env::consts::OS {
Expand Down

0 comments on commit fa22b2f

Please sign in to comment.