Skip to content

Commit

Permalink
fix: remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Sep 26, 2024
1 parent 99530f4 commit 664b592
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion cli/src/cli/complete_word.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ impl CompleteWord {
let choices = if ctoken == "-" {
let shorts = self.complete_short_flag_names(&parsed.available_flags, "");
let longs = self.complete_long_flag_names(&parsed.available_flags, "");
dbg!(&shorts, &longs);
shorts.into_iter().chain(longs).collect()
} else if ctoken.starts_with("--") {
self.complete_long_flag_names(&parsed.available_flags, &ctoken)
Expand Down
2 changes: 0 additions & 2 deletions lib/src/parse/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,9 +248,7 @@ impl SpecCommand {
pub(crate) fn mount(&mut self) -> Result<(), UsageErr> {
for mount in self.mounts.iter().cloned().collect_vec() {
let output = sh(&mount.run)?;
dbg!(&output);
let spec = Spec::parse_spec(&output)?;
dbg!(&spec);
self.merge(spec.cmd);
}
Ok(())
Expand Down

0 comments on commit 664b592

Please sign in to comment.