Skip to content

Commit a39ef7a

Browse files
fjlatif-konasl
authored andcommitted
build: fix iOS framework build (ethereum#22813)
This fixes a regression introduced in ethereum#22804.
1 parent 25e9946 commit a39ef7a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build/ci.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -972,6 +972,9 @@ func doXCodeFramework(cmdline []string) {
972972
// Create the archive.
973973
maybeSkipArchive(env)
974974
archive := "geth-" + archiveBasename("ios", params.ArchiveVersion(env.Commit))
975+
if err := os.MkdirAll(archive, 0755); err != nil {
976+
log.Fatal(err)
977+
}
975978
bind.Dir, _ = filepath.Abs(archive)
976979
build.MustRun(bind)
977980
build.MustRunCommand("tar", "-zcvf", archive+".tar.gz", archive)

0 commit comments

Comments
 (0)