Commit 04687429 authored by Sean Freiburg's avatar Sean Freiburg Committed by Jonah Williams

Fix flutter root error message string interpolation (#24944)

The variable isn't interpolating because it's using "${}" when ruby uses "#{}".
parent cea4aa9b
......@@ -23,7 +23,7 @@ end
def flutter_root(f)
generated_xcode_build_settings = parse_KV_file(File.join(f, File.join('.ios', 'Flutter', 'Generated.xcconfig')))
if generated_xcode_build_settings.empty?
puts "Generated.xcconfig must exist. Make sure `flutter packages get` is executed in ${f}."
puts "Generated.xcconfig must exist. Make sure `flutter packages get` is executed in #{f}."
exit
end
generated_xcode_build_settings.map { |p|
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment