Skip to content

Commit

Permalink
Merge pull request #48 from zickgraf/fix
Browse files Browse the repository at this point in the history
Fix "dot" script and prefer artifact libs over system libs
  • Loading branch information
mohamed-barakat authored May 30, 2022
2 parents ca7b2ad + f25d974 commit 5450cc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CapAndHomalg"
uuid = "c4774649-1891-41ea-a883-87141804c57c"
authors = ["Mohamed Barakat <[email protected]>"]
version = "1.4.0"
version = "1.4.1"

[deps]
GAP = "c863536a-3901-11e9-33e7-d5cd0df7b904"
Expand Down
2 changes: 1 addition & 1 deletion src/setup.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function regenerate_Graphviz_wrapper(binpath, wrapperpath)
toolpath = joinpath(wrapperpath, tool)
write(toolpath, """
#!/bin/sh
export $(LIBPATH_env)="$(Graphviz_jll.LIBPATH)"
export $(LIBPATH_env)="$(join(reverse(Graphviz_jll.LIBPATH_list),":"))"
$(binpath)/$(tool) "\$@"
""")
chmod(toolpath, 0o777)
Expand Down

2 comments on commit 5450cc3

@mohamed-barakat
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/61369

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.4.1 -m "<description of version>" 5450cc3e7b7360ba5d776ddba7d405fa16b57dc3
git push origin v1.4.1

Please sign in to comment.