From 5a663334f076cd75ea12ecf20e73187b1c0bba8c Mon Sep 17 00:00:00 2001 From: Ivan Smolin Date: Mon, 29 Jan 2024 16:40:50 +0300 Subject: [PATCH] fix syntax issue in swiftlint script --- xcode/build_phases/swiftlint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xcode/build_phases/swiftlint.sh b/xcode/build_phases/swiftlint.sh index 916f8b0..ccb66f8 100755 --- a/xcode/build_phases/swiftlint.sh +++ b/xcode/build_phases/swiftlint.sh @@ -32,7 +32,7 @@ readonly SOURCES_DIRS=`. ${SCRIPT_DIR}/common/read_input_file_names.sh "\n" ${SR if [ -z "${SWIFTLINT_EXECUTABLE}" ]; then if [ ! -z "${1}" ]; then readonly SWIFTLINT_EXECUTABLE=${1} - elif [ ! -z "${PODS_ROOT}" ]; + elif [ ! -z "${PODS_ROOT}" ]; then readonly SWIFTLINT_EXECUTABLE=${PODS_ROOT}/SwiftLint/swiftlint else readonly SWIFTLINT_EXECUTABLE=${SRCROOT}/Pods/SwiftLint/swiftlint