storage/sql: fix typo in keys query

This commit is contained in:
Eric Chiang
2016-10-14 11:56:50 -07:00
parent 0a3aabc8ff
commit fe320c1928
2 changed files with 3 additions and 3 deletions

View File

@@ -70,7 +70,7 @@ function wait_for_file {
}
function wait_for_container {
while [ -z "$( rkt list --full | grep $1 )" ]; do
while [ -z "$( rkt list --full | grep $1 | grep running )" ]; do
sleep 1
done
}