Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4f5e9ab

Browse files
author
Zoltan
committedMar 7, 2019
add better comment for a workaround
1 parent 3128602 commit 4f5e9ab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎build/tasks.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ const ensureClean = register("vscode:clean", async (runner) => {
236236
const status = await runner.execute("git", ["status", "--porcelain"]);
237237
if (status.stdout.trim() !== "") {
238238

239-
// inside docker this library throws error on git clean
239+
// this is an uggly workaround - inside docker git clean throws an error message because of this directory
240+
// related to git modules.
240241
await runner.execute("rm", ["-rf", "node_modules/spdlog"]);
241242

242243
const clean = await runner.execute("git", ["clean", "-f", "-d", "-X"]);

0 commit comments

Comments
 (0)
Please sign in to comment.