Skip to content

Commit

Permalink
Fix casing of Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed Sep 28, 2023
1 parent 31d2af8 commit 46018bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/Test/Rust.fs
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ let handle (args: string list) =

Shell.copyFile
mainTestsDestinationDir
(mainTestsProjectDir </> "cargo.toml")
(mainTestsProjectDir </> "Cargo.toml")

!!(mainTestsProjectDir </> "tests" </> "src" </> "*.rs")
|> Seq.iter (fun file ->
let destionation = mainTestsDestinationDir </> "tests" </> "src"
let destination = mainTestsDestinationDir </> "tests" </> "src"

Shell.copyFile destionation file
Shell.copyFile destination file
)

let cargoTestArgs =
Expand Down

0 comments on commit 46018bd

Please sign in to comment.