Browse Source

remove unneeded output

Grant Limberg 5 years ago
parent
commit
cc52835ce3
1 changed files with 0 additions and 2 deletions
  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}"
                     }