diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2018-10-19 12:57:15 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2018-10-19 12:57:33 -0400 |
commit | 8d187a612ec0c74827947504a472ac65823dfcff (patch) | |
tree | 06e2f69dcf793af1af863265189dbf7c7bcfc285 | |
parent | 9a76dd0b740d3dc1d38c52792909b1f8d6ef6971 (diff) | |
download | mongo-8d187a612ec0c74827947504a472ac65823dfcff.tar.gz |
SERVER-37651 Fix lint
-rwxr-xr-x | buildscripts/packager.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/buildscripts/packager.py b/buildscripts/packager.py index 871c3253c61..f5c265580b0 100755 --- a/buildscripts/packager.py +++ b/buildscripts/packager.py @@ -519,8 +519,7 @@ def make_package(distro, build_os, arch, spec, srcdir): # FIXME: sh-dash-cee is bad. See if tarfile can do this. sysassert([ "sh", "-c", - "(cd \"%s\" && tar cf - %s ) | (cd \"%s\" && tar xvf -)" % - (srcdir, pkgdir, sdir) + "(cd \"%s\" && tar cf - %s ) | (cd \"%s\" && tar xvf -)" % (srcdir, pkgdir, sdir) ]) # Splat the binaries under sdir. The "build" stages of the # packaging infrastructure will move the files to wherever they |