Skip to content

Commit a13e210

Browse files
authored
system-setup: tar only for Oracle Linux 8 (RedisJSON#639)
1 parent 692ebac commit a13e210

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sbin/system-setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def common_first(self):
2222
self.pip_install("wheel")
2323
self.pip_install("setuptools --upgrade")
2424

25-
self.install("git rsync tar")
25+
self.install("git rsync")
2626

2727
if not self.has_command("clang"):
2828
self.run("%s/bin/getclang --modern" % READIES)
@@ -35,6 +35,8 @@ def debian_compat(self):
3535
self.run("%s/bin/getgcc" % READIES)
3636

3737
def redhat_compat(self):
38+
if self.osnick == 'ol8':
39+
self.install("tar")
3840
self.run("%s/bin/enable-utf8" % READIES)
3941
self.install("redhat-lsb-core")
4042
self.run("%s/bin/getgcc --modern" % READIES)

0 commit comments

Comments
 (0)