Skip to content

Commit

Permalink
stupid bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed Mar 10, 2023
1 parent 68aba69 commit 77f6bd4
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 = "RemoteHPC"
uuid = "c4f2a1c4-7655-40d8-82ee-c6ae0a8b7409"
authors = ["louisponet <[email protected]>"]
version = "0.3.18"
version = "0.3.19"

[deps]
BinaryTraits = "190e46ec-f771-4705-b939-984896f7be0e"
Expand Down
2 changes: 1 addition & 1 deletion src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function Base.setproperty!(e::Exec, name::Symbol, v)
Base.depwarn("`e.exec` will be deprecated in favor of `e.path`.", :Exec)
return setfield!(e, :path, joinpath(dirname(e.path), v))
else
return getfield(e, name)
return setfield!(e, name, v)
end
end

Expand Down

2 comments on commit 77f6bd4

@louisponet
Copy link
Owner 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/79361

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 v0.3.19 -m "<description of version>" 77f6bd401c6bdef94155aee546513c1ad7d239ba
git push origin v0.3.19

Please sign in to comment.