From 3f2ace8eaea1a6a1747137af0c6b4e108d255772 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ey=C3=BE=C3=B3r=20Magn=C3=BAsson?= Date: Mon, 10 Sep 2018 15:45:54 +0200 Subject: [PATCH] fix(gulpfile): ensure tmp dir exists when updating brew tap --- garden-cli/gulpfile.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/garden-cli/gulpfile.ts b/garden-cli/gulpfile.ts index fc3ce24ad9..23633a4d57 100644 --- a/garden-cli/gulpfile.ts +++ b/garden-cli/gulpfile.ts @@ -179,6 +179,7 @@ gulp.task("tslint-tests", () => */ gulp.task("update-brew", async () => { // clone the homebrew-garden tap repo + await ensureDir(tmpDir) const brewRepoDir = resolve(tmpDir, "homebrew-garden") if (await pathExists(brewRepoDir)) { await remove(brewRepoDir)