Build android dotnet

This commit is contained in:
2025-03-23 22:48:13 -05:00
commit 41fd03c96c
13 changed files with 330 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/expect -f
set timeout 1800
set cmd [lindex $argv 0]
set licenses [lindex $argv 1]
spawn {*}$cmd
expect {
"(y/N)" {
exp_send "y\r"
exp_continue
}
eof
}