We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25e9946 commit a39ef7aCopy full SHA for a39ef7a
build/ci.go
@@ -972,6 +972,9 @@ func doXCodeFramework(cmdline []string) {
972
// Create the archive.
973
maybeSkipArchive(env)
974
archive := "geth-" + archiveBasename("ios", params.ArchiveVersion(env.Commit))
975
+ if err := os.MkdirAll(archive, 0755); err != nil {
976
+ log.Fatal(err)
977
+ }
978
bind.Dir, _ = filepath.Abs(archive)
979
build.MustRun(bind)
980
build.MustRunCommand("tar", "-zcvf", archive+".tar.gz", archive)
0 commit comments