Skip to content

Commit fac3db1

Browse files
committed
fix nit for ^/
1 parent 9ad34ee commit fac3db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/mina_automation/utils.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ let paths =
77

88
let possible_locations ~file possible_locations =
99
let exists_at_path folder file =
10-
match Sys.file_exists (folder ^ "/" ^ file) with
10+
match Sys.file_exists (folder ^/ file) with
1111
| `Yes ->
12-
Some (folder ^ "/" ^ file)
12+
Some (folder ^/ file)
1313
| _ ->
1414
None
1515
in

0 commit comments

Comments
 (0)