rm run negation

This commit is contained in:
elianddb
2025-10-16 14:18:53 -07:00
parent c46cb5f444
commit 5db9f4750c
2 changed files with 2 additions and 3 deletions

View File

@@ -306,7 +306,7 @@ get_config_file_path_if_exists() {
# e.g., docker_process_init_files /always-initdb.d/*
# Processes initializer files based on file extensions.
docker_process_init_files() {
local f sql
local f
echo
for f; do
case "$f" in

View File

@@ -162,7 +162,6 @@ wait_for_log() {
[ $status -eq 0 ]
[[ "$output" =~ "Tables_in_versioning,Table_type" ]] || false
# Can use the database for operations
run docker exec "$cname" dolt sql -q "USE \`$kw_db\`; CREATE TABLE test_table (id INT);"
[ $status -eq 0 ]
}
@@ -996,7 +995,7 @@ EOF
run grep -F "[0] [System] [Dolt] [Server]" /tmp/"${cname}".log
[ $status -eq 0 ]
run ! grep -F "level=" /tmp/"${cname}".log
run grep -F "level=" /tmp/"${cname}".log
[ $status -ne 0 ]
}