From 0374cbc1df961c1576490a7dbdb19c6f7081aa1a Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Thu, 26 Aug 2004 09:05:29 +0000 Subject: quiet cvs/svn tarball creating --- bin/oe/fetch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/oe/fetch.py b/bin/oe/fetch.py index cb1a16069..5fa589eff 100644 --- a/bin/oe/fetch.py +++ b/bin/oe/fetch.py @@ -403,7 +403,7 @@ class Cvs(Fetch): os.chdir(os.path.join(tmpfile, os.path.dirname(module))) # tar them up to a defined filename - myret = os.system("tar -czvf %s %s" % (os.path.join(dldir,tarfn), localdir)) + myret = os.system("tar -czf %s %s" % (os.path.join(dldir,tarfn), localdir)) if myret != 0: try: os.unlink(tarfn) @@ -615,7 +615,7 @@ class Svn(Fetch): os.chdir(os.path.join(tmpfile, os.path.dirname(module))) # tar them up to a defined filename - myret = os.system("tar -czvf %s %s" % (os.path.join(dldir,tarfn), os.path.basename(module))) + myret = os.system("tar -czf %s %s" % (os.path.join(dldir,tarfn), os.path.basename(module))) if myret != 0: try: os.unlink(tarfn) -- cgit 1.2.3-korg