From f774529f7391822415acffe66ff0deff710024dc Mon Sep 17 00:00:00 2001 From: ApocalypseMike Date: Fri, 5 Apr 2019 17:53:53 +0200 Subject: [PATCH] Fix the bug that prevent the use of COCAPODS_VERSION env variable --- libexec/podenv-version-name | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libexec/podenv-version-name b/libexec/podenv-version-name index 0b2a291..35710e0 100755 --- a/libexec/podenv-version-name +++ b/libexec/podenv-version-name @@ -13,4 +13,6 @@ if [ -z "$COCOAPODS_VERSION" ]; then else cat "$COCOAPODS_VERSION_FILE" | ruby -e "require 'yaml'; puts YAML.load(STDIN.read)['COCOAPODS']" fi +else + echo "$COCOAPODS_VERSION" fi