Skip to content

Commit

Permalink
Fix a small bug with the automatic construction of the tarball_name
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge committed Jul 24, 2021
1 parent 8827605 commit 063a5fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion images/buildkite_agent_linux.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

include(joinpath(dirname(@__DIR__), "rootfs_utils.jl"))
arch, = parse_args(ARGS)
image = "$(basename(@__FILE__)).$(arch)"
image = "$(splitext(basename(@__FILE__))[1]).$(arch)"

# Build debian-based image with the following extra packages:
packages = [
Expand Down
2 changes: 1 addition & 1 deletion images/package_linux.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

include(joinpath(dirname(@__DIR__), "rootfs_utils.jl"))
arch, = parse_args(ARGS)
image = "$(basename(@__FILE__)).$(arch)"
image = "$(splitext(basename(@__FILE__))[1]).$(arch)"

# Build debian-based image with the following extra packages:
packages = [
Expand Down
2 changes: 1 addition & 1 deletion images/package_musl.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

include(joinpath(dirname(@__DIR__), "rootfs_utils.jl"))
arch, = parse_args(ARGS)
image = "$(basename(@__FILE__)).$(arch)"
image = "$(splitext(basename(@__FILE__))[1]).$(arch)"

# Build alpine-based image with the following extra packages:
packages = [
Expand Down

0 comments on commit 063a5fa

Please sign in to comment.