Skip to content
Snippets Groups Projects
Commit b68f5fd7 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix(exec): — typo

parent 20b46ae4
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ export async function removeDockerContainer(image): Promise<void> { ...@@ -114,7 +114,7 @@ export async function removeDockerContainer(image): Promise<void> {
const containerName = getContainerName(image); const containerName = getContainerName(image);
try { try {
const res = await rawExec( const res = await rawExec(
`docker ps --filter name=${containerName} -aq | xargs ---no-run-if-empty docker rm -f`, `docker ps --filter name=${containerName} -aq | xargs --no-run-if-empty docker rm -f`,
{ encoding: 'utf-8' } { encoding: 'utf-8' }
); );
if (res?.stdout?.trim().length) { if (res?.stdout?.trim().length) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment