chore(ci): refine shellcheck

This commit is contained in:
reluctantfuturist 2025-04-23 11:39:01 -07:00
parent b67940e5cc
commit 6a135e80c7
2 changed files with 4 additions and 1 deletions

View file

@ -32,7 +32,7 @@ for name in ollama-server llama-stack; do
ids=$($ENGINE ps -aq --filter "name=^${name}$")
if [ -n "$ids" ]; then
log "⚠️ Found existing container(s) for '${name}', removing..."
$ENGINE rm -f $ids
$ENGINE rm -f "$ids"
fi
done