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

Commit 14c0587

Browse files
authored
Change fetch-assets script to work w/ npm 5 (#163)
1 parent 727813b commit 14c0587

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/fetch-assets.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ cp -r ${examplesPath} ${exampleAssetsPath}
3838
cp -r ${plunkerExamplesPath} ${plunkerExampleAssetsPath}
3939

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

4344
# Remove temporary directory
4445
rm -rf ${tmpAssetClonePath}

0 commit comments

Comments
 (0)