mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-25 03:09:00 -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;}
|
|
}
|