We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86a6c90 commit 1fdf97aCopy full SHA for 1fdf97a
tools/fetch-assets-local.sh
@@ -12,17 +12,11 @@ elif [ -d ${MATERIAL2_LOCAL} ] ; then
12
baseSrcPath = ${MATERIAL2_LOCAL}
13
fi
14
15
-# Ensure Docs Dist
16
-if [ ! -d ${baseSrcPath}/dist/docs ] ; then
17
- echo "- Missing /dist/docs...Running 'gulp docs'"
18
- ( cd ${baseSrcPath} && gulp docs )
19
-fi
+# Build Docs
+(cd ${baseSrcPath} && gulp docs)
20
21
-# Ensure Material Examples Pkg
22
-if [ ! -d ${baseSrcPath}/dist/releases/material-examples ] ; then
23
- echo "- Missing material-examples...Running 'gulp material-examples:build-release'"
24
- ( cd ${baseSrcPath} && gulp material-examples:build-release)
25
+# Build Examples
+(cd ${baseSrcPath} && gulp material-examples:build-release)
26
27
# Base Target Path
28
baseTargetPath=./src/assets
0 commit comments