Remove deprecated check

This commit is contained in:
Igor Pečovnik
2019-09-07 23:32:18 +02:00
committed by GitHub
parent 202d2cac81
commit f7f98eabb5

View File

@@ -22,7 +22,7 @@ grep -q "[[:space:]]" <<<"${SRC}" && { echo "\"${SRC}\" contains whitespace. Not
cd "${SRC}" || exit
if [[ -f "${SRC}"/lib/general.sh && -L "${SRC}"/main.sh ]]; then
if [[ -f "${SRC}"/lib/general.sh ]]; then
# shellcheck source=lib/general.sh
source "${SRC}"/lib/general.sh
else