From c0bc4fb415764a9a896c16d249ea9fa0a6afc731 Mon Sep 17 00:00:00 2001 From: Andrew Seier Date: Thu, 18 Sep 2014 02:26:31 -0700 Subject: [PATCH] Only copy over specific files into on sync. --- makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index aa5a9447399..2363eb2602e 100644 --- a/makefile +++ b/makefile @@ -43,7 +43,12 @@ sync_chunked : submodules/chunked_requests sync_refs : submodules/graph_reference @echo "" @echo "Syncing graph_reference directories" - rsync -r submodules/graph_reference plotly/ + rm -r plotly/graph_reference + mkdir plotly/graph_reference + cp submodules/graph_reference/graph_objs_meta.json plotly/graph_reference + cp submodules/graph_reference/KEY_TO_NAME.json plotly/graph_reference + cp submodules/graph_reference/NAME_TO_KEY.json plotly/graph_reference + cp submodules/graph_reference/OBJ_MAP.json plotly/graph_reference pull_refs : submodules/graph_reference @echo ""