aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCody Hiar <codyfh@gmail.com>2019-01-03 16:03:19 +0000
committerCody Hiar <codyfh@gmail.com>2019-01-03 16:03:19 +0000
commit81b4d7f7904b3e63926f37e3b0d486bf9469b4e1 (patch)
tree70eea30596dfb25ac8c95d5455aee849befae39f
parent50a01b4e89cbb79e1dc82d803675e8b63000415c (diff)
Change clone paths
-rw-r--r--Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e718bfc..a3b4a4c 100644
--- a/Makefile
+++ b/Makefile
@@ -7,10 +7,9 @@ help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
setup: ## Clone down additional repos that are needed for building
- git clone git@github.com:thornycrackers/.nvim.git nvim
- git clone git@github.com:thornycrackers/vim-options.git
- git clone git@github.com:thornycrackers/.vim.git vim
- git clone https://github.com/sunaku/dasht
+ git clone https://github.com/thornycrackers/.nvim.git nvim
+ git clone https://github.com/thornycrackers/vim-options.git
+ git clone https://github.com/thornycrackers/.vim.git vim
build: ## Build the base image
docker build -t thornycrackers/neovim .