aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--grs/Kernel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Kernel.py b/grs/Kernel.py
index 38b8644..c9a99d8 100644
--- a/grs/Kernel.py
+++ b/grs/Kernel.py
@@ -119,6 +119,6 @@ class Kernel():
os.chdir(image_dir)
if os.path.isfile(tarball_path):
os.unlink(tarball_path)
- cmd = 'tar -Jchf %s .' % tarball_path
+ cmd = 'tar -Jcf %s .' % tarball_path
Execute(cmd, timeout=600, logfile=self.logfile)
os.chdir(cwd)