Skip to content

Commit f348315

Browse files
authored
[Rootfs] Fix name of PlatformSupport artifacts (#187)
Also `PlatformSupport` calls the armv6l artifacts `armv7l`
1 parent d7affb9 commit f348315

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BinaryBuilderBase"
22
uuid = "7f725544-6523-48cd-82d1-3fa08ff4056e"
33
authors = ["Elliot Saba <[email protected]>"]
4-
version = "1.1.0"
4+
version = "1.1.1"
55

66
[deps]
77
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"

src/Rootfs.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function artifact_name(cs::CompilerShard)
6767
if cs.target != nothing
6868
target_str = "-$(triplet(cs.target))"
6969

70-
if cs.name == "GCCBootstrap"
70+
if cs.name in ("GCCBootstrap", "PlatformSupport")
7171
# armv6l uses the same GCC shards as armv7l, so we just rename here.
7272
target_str = replace(target_str, "-armv6l-linux" => "-armv7l-linux")
7373
end

0 commit comments

Comments
 (0)