Skip to content

Commit

Permalink
Fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
richardreeve committed Jul 17, 2024
1 parent d95d005 commit 0c8c76c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
JuliaFormatter = "98e50ef6-434e-11e9-1051-2b60c6c9e899"
Phylo = "aea672f4-3940-5932-aa44-993d1c3ff149"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
ResearchSoftwareMetadata = "58378933-4625-47fa-851e-05ee27d397bd"
2 changes: 1 addition & 1 deletion test/test_Phylo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ using ResearchSoftwareMetadata
function is_repo_clean(repo_path)
# Get the status of the repository
statuses = readlines(`$(Git.git()) status -s $repo_path`)
statuses = filter((!)contains("??"), statuses)
statuses = filter((!) contains("??"), statuses)

is_clean = isempty(statuses)
is_clean || @error "\n" * join(statuses, "\n")
Expand Down

0 comments on commit 0c8c76c

Please sign in to comment.