Skip to content

Commit ece739f

Browse files
authored
Merge pull request #93 from bcbi/DilumAluthge-patch-1
Fix the URL for downloading `juliareleases.asc`
2 parents bb689d3 + ad81c93 commit ece739f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "SimpleContainerGenerator"
22
uuid = "b8d349fb-717b-4aac-a9b1-e1da4219c631"
33
authors = ["Dilum Aluthge"]
4-
version = "2.0.0"
4+
version = "2.0.1"
55

66
[deps]
77
PackageCompiler = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d"
88
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
99
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
1010

1111
[compat]
12-
PackageCompiler = "1.1.1"
12+
PackageCompiler = "1.2.2"
1313
julia = "1.4"
1414

1515
[extras]

src/config_to_template.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function Template(config::Config)
8484
push!(step_list_vector, EnvStep("PROMPT_COMMAND", "\"echo -n [\$()]\""))
8585
#
8686
push!(step_list_vector, RunStep("mkdir -p /tmp/simplecontainergenerator_containers-julia-gpg-key"))
87-
push!(step_list_vector, RunStep("cd /tmp/simplecontainergenerator_containers-julia-gpg-key && curl https://julialang.org/juliareleases.asc --output juliareleases.asc"))
87+
push!(step_list_vector, RunStep("cd /tmp/simplecontainergenerator_containers-julia-gpg-key && curl https://julialang.org/assets/juliareleases.asc --output juliareleases.asc"))
8888
push!(step_list_vector, RunStep("cd /tmp/simplecontainergenerator_containers-julia-gpg-key && gpg --import juliareleases.asc"))
8989
push!(step_list_vector, RunStep("rm -rf /tmp/simplecontainergenerator_containers-julia-gpg-key"))
9090
#

src/default_values.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ _default_docker_parent_image() = "ubuntu:latest"
44

55
_default_julia_version() = v"1.4.0"
66

7-
_default_packagecompiler_installation_command() = "import Pkg; Pkg.add(Pkg.PackageSpec(name = \"PackageCompiler\", version = \"1.1.1 - 1\"));"
7+
_default_packagecompiler_installation_command() = "import Pkg; Pkg.add(Pkg.PackageSpec(name = \"PackageCompiler\", version = \"1.2.2 - 1\"));"
88

99
_default_simplecontainergenerator_installation_command() = "import Pkg; Pkg.add(Pkg.PackageSpec(name = \"SimpleContainerGenerator\"));"
1010

0 commit comments

Comments
 (0)