From d977a43fd95fb6f99e07851b770ceb41c000f3fe Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 10 Mar 2017 21:02:39 +0100 Subject: [PATCH] build: include license in docs-content * Now includes the `LICENSE` file in the `material2-docs-content` repository. Similar as for `material2-builds`. --- scripts/release/publish-docs-content.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/release/publish-docs-content.sh b/scripts/release/publish-docs-content.sh index ddb2fe01379e..591569941afd 100755 --- a/scripts/release/publish-docs-content.sh +++ b/scripts/release/publish-docs-content.sh @@ -63,6 +63,9 @@ done # Move highlighted examples into $repoPath cp -r $examplesSource/* $repoPath/examples +# Copies assets over to the docs-content repository. +cp LICENSE $repoPath/ + # Push content to repo cd $repoPath git config user.name "$commitAuthorName"