Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/flutter_tools/bin/podhelper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def flutter_relative_path_from_podfile(path)

def flutter_parse_xcconfig_file(file)
file_abs_path = File.expand_path(file)
if !File.exists? file_abs_path
if !File.exist? file_abs_path
return [];
end
entries = Hash.new
Expand All @@ -346,7 +346,7 @@ def flutter_parse_xcconfig_file(file)

def flutter_get_local_engine_dir(xcconfig_file)
file_abs_path = File.expand_path(xcconfig_file)
if !File.exists? file_abs_path
if !File.exist? file_abs_path
return nil
end
config = flutter_parse_xcconfig_file(xcconfig_file)
Expand Down