diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-11-17 23:15:17 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-17 23:15:17 +0800 |
commit | f3228592f5df27fb4ad7ae4b77a30878c6366bd5 (patch) | |
tree | d3a69781740b269038dcd3994c8c77da4a5b19c0 /build | |
parent | 87b8254da1ef9ffff7ebdbea6e03e5e843317eb7 (diff) | |
download | dexon-f3228592f5df27fb4ad7ae4b77a30878c6366bd5.tar.gz dexon-f3228592f5df27fb4ad7ae4b77a30878c6366bd5.tar.zst dexon-f3228592f5df27fb4ad7ae4b77a30878c6366bd5.zip |
travis: dash of black magic to summon the cache daemon (#3288)
Diffstat (limited to 'build')
-rw-r--r-- | build/ci.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build/ci.go b/build/ci.go index 8ddc50a0c..0e1ed37ca 100644 --- a/build/ci.go +++ b/build/ci.go @@ -777,7 +777,6 @@ func doXCodeFramework(cmdline []string) { // Build the iOS XCode framework build.MustRun(goTool("get", "golang.org/x/mobile/cmd/gomobile")) - build.MustRun(gomobileTool("init")) archive := "geth-" + archiveBasename("ios", env) if err := os.Mkdir(archive, os.ModePerm); err != nil { @@ -799,7 +798,7 @@ func doXCodeFramework(cmdline []string) { if *deploy != "" { meta := newPodMetadata(env) build.Render("build/pod.podspec", meta.Name+".podspec", 0755, meta) - build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings") + build.MustRunCommand("pod", *deploy, "push", meta.Name+".podspec", "--allow-warnings", "--verbose") } } |