Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ci/check_cargo_versions_match.roc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ main! = |_args|
ci_cargo_path = "ci/rust_http_server/Cargo.toml"

# Check if both files exist
root_exists = File.is_file!(root_cargo_path)?
ci_exists = File.is_file!(ci_cargo_path)?
root_exists = File.exists!(root_cargo_path)?
ci_exists = File.exists!(ci_cargo_path)?

if !root_exists then
err_exit("${root_cargo_path} not found in ${Path.display(cwd)}.")
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.