Commit 36b7098a authored by Maciej Wawryk's avatar Maciej Wawryk Committed by Tomasz Zawadzki
Browse files

scripts/pkgdep: Fix failing symlink creation during python instalation

parent d841706a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ if [ -s /etc/redhat-release ]; then
	if echo "$ID $VERSION_ID" | grep -E -q 'centos 8'; then
		yum install -y python36
		#Create hard link to use in SPDK as python
		ln /etc/alternatives/python3 /usr/bin/python
		ln /etc/alternatives/python3 /usr/bin/python || true
	else
		yum install -y python
	fi