Skip to content

Commit

Permalink
Docker sudo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Salceanu committed Dec 3, 2021
1 parent f6ff591 commit 0ab1f8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Genie"
uuid = "c43c736e-a2d1-11e8-161f-af95117fbd1e"
authors = ["Adrian Salceanu <[email protected]>"]
version = "4.4.1"
version = "4.4.2"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
2 changes: 1 addition & 1 deletion src/Configuration.jl
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Base.@kwdef mutable struct Settings

features_peerinfo::Bool = false

format_julia_builds::Bool = true
format_julia_builds::Bool = false
format_html_output::Bool = true
format_html_indentation_string::String = " "
end
Expand Down
2 changes: 1 addition & 1 deletion src/Deploy.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module Docker

import Genie, Genie.FileTemplates

DOCKER(; sudo::Bool = Sys.islinux()) = `$(sudo ? "sudo " : "")docker`
DOCKER(; sudo::Bool = Sys.islinux()) = (sudo ? `sudo docker` : `docker`)

"""
dockerfile(path::String = "."; user::String = "genie", env::String = "dev",
Expand Down
2 changes: 1 addition & 1 deletion src/Sessions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Sessions
import SHA, HTTP, Dates, Logging
import Genie

const HTTP = HTTP
# const HTTP = HTTP


"""
Expand Down

2 comments on commit 0ab1f8d

@essenciary
Copy link
Member

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/49872

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 v4.4.2 -m "<description of version>" 0ab1f8dc3caf40057b63cc8acc781f70902b5c70
git push origin v4.4.2

Please sign in to comment.