Skip to content

Commit 33340a7

Browse files
committed
chore: fix formatting
1 parent ad0c259 commit 33340a7

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

  • crates/bashkit/src/interpreter

crates/bashkit/src/interpreter/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,9 +1161,7 @@ impl Interpreter {
11611161
match args[0].as_str() {
11621162
"-z" => args[1].is_empty(),
11631163
"-n" => !args[1].is_empty(),
1164-
"-e" | "-a" => {
1165-
self.fs.exists(&resolve(&args[1])).await.unwrap_or(false)
1166-
}
1164+
"-e" | "-a" => self.fs.exists(&resolve(&args[1])).await.unwrap_or(false),
11671165
"-f" => self
11681166
.fs
11691167
.stat(&resolve(&args[1]))

0 commit comments

Comments
 (0)