From 855c91831c5d54800c16ca1edda49483fdd17e85 Mon Sep 17 00:00:00 2001 From: Will Owens Date: Sun, 27 Feb 2022 19:55:46 -0500 Subject: [PATCH] Fix `make` with existing directories --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8cb2504..b3ba057 100644 --- a/Makefile +++ b/Makefile @@ -14,10 +14,10 @@ server/asset.go: bindata/static/js/gotty-bundle.js bindata/static/js/gotty-bundl all: server/asset.go gotty bindata: - mkdir bindata + mkdir -p bindata bindata/static: bindata - mkdir bindata/static + mkdir -p bindata/static bindata/static/index.html: bindata/static resources/index.html cp resources/index.html bindata/static/index.html