Update styles to latest unicorn 🦄 and prettier 🦋

This commit is contained in:
Webber
2020-05-01 16:52:08 +02:00
committed by Webber Takken
parent afef854ea0
commit 98a1b078fc
12 changed files with 29 additions and 31 deletions

View File

@@ -12,7 +12,7 @@ class Docker {
--build-arg IMAGE=${baseImage} \
--tag ${tag}`;
await exec(command, null, { silent });
await exec(command, undefined, { silent });
return tag;
}
@@ -70,7 +70,7 @@ class Docker {
--volume "${workspace}":"/github/workspace" \
${image}`;
await exec(command, null, { silent });
await exec(command, undefined, { silent });
}
}