Skip to content

Commit

Permalink
fix(view): remove stray dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Apr 4, 2023
1 parent d540037 commit 03f7a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/view.rs
Expand Up @@ -40,7 +40,7 @@ impl OroCommand for ViewCmd {
if let Some(root) = self.root {
nassun_opts = nassun_opts.base_dir(root);
}
if let Some(cache) = dbg!(self.cache) {
if let Some(cache) = self.cache {
nassun_opts = nassun_opts.cache(cache);
}
let pkg = nassun_opts.build().resolve(&self.pkg).await?;
Expand Down

0 comments on commit 03f7a7d

Please sign in to comment.