Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Change fetch-assets script to work w/ npm 5 #163

Merged
merged 1 commit into from
Jun 2, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tools/fetch-assets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ cp -r ${examplesPath} ${exampleAssetsPath}
cp -r ${plunkerExamplesPath} ${plunkerExampleAssetsPath}

# Install the live examples component library
npm i ${tmpAssetClonePath}/examples-package
mkdir -p ./node_modules/@angular/material-examples
cp -r ${tmpAssetClonePath}/examples-package/* ./node_modules/@angular/material-examples

# Remove temporary directory
rm -rf ${tmpAssetClonePath}