Skip to content

Commit b22bd94

Browse files
authored
Merge pull request #107 from SoBump/master
Fix path for old_read_link
2 parents 04c02f8 + d6d8dc4 commit b22bd94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/cocoapods-binary/Integration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ class EmbedFrameworksScript
269269
# If the path isn't an absolute path, we add a realtive prefix.
270270
old_read_link=`which readlink`
271271
readlink () {
272-
path=`$old_read_link $1`;
272+
path=`$old_read_link "$1"`;
273273
if [ $(echo "$path" | cut -c 1-1) = '/' ]; then
274274
echo $path;
275275
else

0 commit comments

Comments
 (0)