Skip to content

Commit 973ad66

Browse files
authored
build: fix iOS framework build (#22813)
This fixes a regression introduced in #22804.
1 parent d107f90 commit 973ad66

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)