Skip to content

Commit

Permalink
build: fix iOS framework build (#22813)
Browse files Browse the repository at this point in the history
This fixes a regression introduced in #22804.
  • Loading branch information
fjl committed May 4, 2021
1 parent d107f90 commit 973ad66
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/ci.go
Original file line number Diff line number Diff line change
Expand Up @@ -972,6 +972,9 @@ func doXCodeFramework(cmdline []string) {
// Create the archive.
maybeSkipArchive(env)
archive := "geth-" + archiveBasename("ios", params.ArchiveVersion(env.Commit))
if err := os.MkdirAll(archive, 0755); err != nil {
log.Fatal(err)
}
bind.Dir, _ = filepath.Abs(archive)
build.MustRun(bind)
build.MustRunCommand("tar", "-zcvf", archive+".tar.gz", archive)
Expand Down

0 comments on commit 973ad66

Please sign in to comment.