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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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