good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 973ad66b authored by Felix Lange's avatar Felix Lange Committed by GitHub
Browse files

build: fix iOS framework build (#22813)

This fixes a regression introduced in #22804.
parent d107f90d
Branches
Tags
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment