Skip to content

Commit

Permalink
build: fix iOS framework build (ethereum#22813)
Browse files Browse the repository at this point in the history
This fixes a regression introduced in ethereum#22804.
  • Loading branch information
fjl authored and atif-konasl committed Oct 15, 2021
1 parent 25e9946 commit a39ef7a
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 a39ef7a

Please sign in to comment.