Unverified Commit e0dcb787 authored by xster's avatar xster Committed by GitHub

groovy escaping was wrong for aar (#72554)

parent 6a5ff9ad
......@@ -721,7 +721,7 @@ void printHowToConsumeAar({
url '${repoDirectory.path}'
}
maven {
url '\$storageUrl/download.flutter.io'
url "\$storageUrl/download.flutter.io"
}
}
......
......@@ -2588,7 +2588,7 @@ plugin1=${plugin1.path}
" url 'build/'\n"
' }\n'
' maven {\n'
" url '\$storageUrl/download.flutter.io'\n"
' url "\$storageUrl/download.flutter.io"\n'
' }\n'
' }\n'
'\n'
......@@ -2639,7 +2639,7 @@ plugin1=${plugin1.path}
" url 'build/'\n"
' }\n'
' maven {\n'
" url '\$storageUrl/download.flutter.io'\n"
' url "\$storageUrl/download.flutter.io"\n'
' }\n'
' }\n'
'\n'
......@@ -2677,7 +2677,7 @@ plugin1=${plugin1.path}
" url 'build/'\n"
' }\n'
' maven {\n'
" url '\$storageUrl/download.flutter.io'\n"
' url "\$storageUrl/download.flutter.io"\n'
' }\n'
' }\n'
'\n'
......@@ -2716,7 +2716,7 @@ plugin1=${plugin1.path}
" url 'build/'\n"
' }\n'
' maven {\n'
" url '\$storageUrl/download.flutter.io'\n"
' url "\$storageUrl/download.flutter.io"\n'
' }\n'
' }\n'
'\n'
......
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