Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed May 25, 2023
1 parent d122f07 commit 12954a2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 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.28"
version = "0.3.29"

[deps]
BinaryTraits = "190e46ec-f771-4705-b939-984896f7be0e"
Expand Down
7 changes: 5 additions & 2 deletions src/servers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -247,8 +247,9 @@ function install_julia(s::Server)
finish!(spinner, ErrorException("Issue unpacking julia executable on cluster, please install julia manually"))
end
server_command(s, "rm $julia_tar")

return "~/julia-1.8.5/bin/julia"
s.julia_exec = "~/julia-1.8.5/bin/julia"
save(s)
return s.julia_exec
end
end

Expand All @@ -274,6 +275,8 @@ function install(s::Server, julia_exec = s.julia_exec)
if res.exitcode != 0
finish!(spinner, ErrorException("Something went wrong installing RemoteHPC on server, please install manually"))
end

save(s)
end
@info "RemoteHPC installed on remote cluster, try starting the server with `start(server)`."
end
Expand Down

2 comments on commit 12954a2

@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/84218

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.29 -m "<description of version>" 12954a2c906ee48bb2d5d12f361dc8e6a2bb33f3
git push origin v0.3.29

Please sign in to comment.