Skip to content

Commit

Permalink
Removed extra prints
Browse files Browse the repository at this point in the history
  • Loading branch information
prsabahrami committed Oct 8, 2024
1 parent 9a64f1f commit a6a0617
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion crates/deno_task_shell/src/shell/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ fn execute_sequence(
Vec::new(),
),
Sequence::BooleanList(list) => {
// println!("HEREEEEEEEEEE {:?}", list);
let mut changes = vec![];
let first_result = execute_sequence(
list.current,
Expand Down
2 changes: 0 additions & 2 deletions crates/shell/src/execute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ use miette::{Context, IntoDiagnostic};
pub async fn execute_inner(text: &str, state: ShellState) -> miette::Result<ExecuteResult> {
let list = deno_task_shell::parser::parse(text);

println!("list: {:?}", list);

let mut stderr = ShellPipeWriter::stderr();
let stdout = ShellPipeWriter::stdout();
let stdin = ShellPipeReader::stdin();
Expand Down

0 comments on commit a6a0617

Please sign in to comment.