浏览代码

remove unneeded output

Grant Limberg 5 年之前
父节点
当前提交
cc52835ce3
共有 1 个文件被更改,包括 0 次插入2 次删除
  1. 0 2
      Jenkinsfile

+ 0 - 2
Jenkinsfile

@@ -52,12 +52,10 @@ def buildStaticBinaries() {
                 dir ("build") {
                     checkout scm
                 }
-                sh "echo ${distro}-${platform}"
                 def runtime = docker.image("ztbuild/${distro}-${platform}:latest")
                 runtime.inside {
                     dir("build") {
                         sh 'make -j8 ZT_STATIC=1 all'
-                        sh "file ./zerotier-one"
                         sh "mv zerotier-one zerotier-one-static-${platform}"
                         stash includes: 'zerotier-one-static-*', name: "static-${platform}"
                     }