Remove redundant python check from Linux package creation.

This commit is contained in:
Paul Chote
2020-11-27 14:27:48 +00:00
committed by teinarss
parent 4b6e1c2198
commit 754f41ecd1

View File

@@ -3,7 +3,6 @@
set -e
command -v make >/dev/null 2>&1 || { echo >&2 "Linux packaging requires make."; exit 1; }
command -v python >/dev/null 2>&1 || { echo >&2 "Linux packaging requires python."; exit 1; }
command -v tar >/dev/null 2>&1 || { echo >&2 "Linux packaging requires tar."; exit 1; }
command -v curl >/dev/null 2>&1 || command -v wget > /dev/null 2>&1 || { echo >&2 "Linux packaging requires curl or wget."; exit 1; }