Skip to content

Commit

Permalink
clippy + fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lostman committed Dec 11, 2023
1 parent e60b43b commit 8038663
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions plugins/forc-index/src/ops/forc_index_build.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
use crate::{cli::BuildCommand, defaults, utils::project_dir_info};
use fuel_indexer_lib::{
manifest::{Manifest, Module},
utils::Config,
};
use fuel_indexer_lib::{manifest::Manifest, utils::Config};
use indicatif::{ProgressBar, ProgressStyle};
use std::collections::HashSet;
use std::{
Expand Down Expand Up @@ -182,7 +179,7 @@ pub fn init(command: BuildCommand) -> anyhow::Result<()> {
let abs_artifact_path = target_dir
.join(defaults::WASM_TARGET)
.join(profile)
.join(&binary);
.join(binary);

let abs_wasm = abs_artifact_path.as_path().display().to_string();

Expand Down

0 comments on commit 8038663

Please sign in to comment.