Skip to content

Commit

Permalink
(chore) fixed imports and updated .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
anusikh committed Jul 21, 2024
1 parent e3a5776 commit cd23118
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/target
/vendor
.vscode
.idea
4 changes: 1 addition & 3 deletions src/commands/maven/install.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use lazy_static::lazy_static;

use crate::utils::file_utils::{
check_maven_exists, create_maven_dir, extract_tarball_linux, extract_tarball_macos,
find_file_in_dir, get_home_dir, run_command,
extract_zip, find_file_in_dir, get_home_dir, run_command,
};

lazy_static! {
Expand All @@ -16,8 +16,6 @@ lazy_static! {

#[cfg(target_os = "windows")]
fn install_util() {
use crate::utils::file_utils::extract_zip;

match check_maven_exists() {
false => {
create_maven_dir();
Expand Down

0 comments on commit cd23118

Please sign in to comment.