From cc52835ce34a641b723b337d5c990980d69f4f6c Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 4 Feb 2020 09:39:13 -0800 Subject: [PATCH] remove unneeded output --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 20b393176..ae642802d 100644 --- a/Jenkinsfile +++ b/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}" }