mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-15 10:25:32 -06:00
8 lines
130 B
Plaintext
8 lines
130 B
Plaintext
#!/usr/bin/expect
|
|
|
|
spawn dolt log
|
|
expect {
|
|
"*Initialize data repository*" { exit 1; }
|
|
"*commit 16* " { send "q\r"; exit 0;}
|
|
}
|