We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adc672d commit d8ac067Copy full SHA for d8ac067
1 file changed
scripts/upload-android-debug-files.sh
@@ -35,6 +35,10 @@ if [[ -f "$native_symbols_zip" ]]; then
35
unzip -q "$native_symbols_zip" -d "$temp_dir/native-symbols"
36
fi
37
38
+if find "$temp_dir" -path '*/libflutter.so.sym' -type f | grep -q .; then
39
+ find "$temp_dir" -path '*/libflutter.so' -type f -print -delete
40
+fi
41
+
42
if ! find "$temp_dir" -type f | grep -q .; then
43
echo "Resolved Android debug files directory is empty." >&2
44
exit 1
0 commit comments