From a6212ee40d1c49d4004e0ddc4fff052624b251d4 Mon Sep 17 00:00:00 2001 From: ncarter Date: Mon, 24 Oct 2016 08:24:35 -0400 Subject: [PATCH 1/2] adding gitignore to the dist dir to preserve the directory for inital install... install currently fails without the dir being created during post install. --- .gitignore | 3 ++- dist/.gitignore | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 dist/.gitignore diff --git a/.gitignore b/.gitignore index cbda785..9a0fa67 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /public/build /node_modules /public/sw-toolbox.js -dist \ No newline at end of file +dist/* +!dist/.gitignore \ No newline at end of file diff --git a/dist/.gitignore b/dist/.gitignore new file mode 100644 index 0000000..86d0cb2 --- /dev/null +++ b/dist/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except this file +!.gitignore \ No newline at end of file From f2c9fa34e55c4005ab731b0fa54d7034a01d9ec7 Mon Sep 17 00:00:00 2001 From: ncarter Date: Mon, 24 Oct 2016 08:27:41 -0400 Subject: [PATCH 2/2] revert parent gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9a0fa67..cbda785 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ /public/build /node_modules /public/sw-toolbox.js -dist/* -!dist/.gitignore \ No newline at end of file +dist \ No newline at end of file