fix(build): Fix an error in package publishing step where the script errors when a UMD bundle is not found for compiler-cli package.

This commit is contained in:
Vikram Subramanian 2016-05-12 16:49:03 -07:00
parent ff400726ca
commit bac1a6eab3
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@ function publishRepo {
BUILD_VER="2.0.0-${SHORT_SHA}"
if [[ ${TRAVIS} ]]; then
find $REPO_DIR/ -type f -name package.json -print0 | xargs -0 sed -i "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"
find $REPO_DIR/ -type f -name "*umd.js" -print0 | xargs -0 sed -i "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"
UMD=$(find $REPO_DIR/ -type f -name "*umd.js" -print0)
if [[ ${UMD} ]]; then
sed -i "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g" ${UMD}
fi
else
find $REPO_DIR/ -type f -name package.json -print0 | xargs -0 sed -i '' "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"
find $REPO_DIR/ -type f -name "*umd.js" -print0 | xargs -0 sed -i '' "s/\\\$\\\$ANGULAR_VERSION\\\$\\\$/${BUILD_VER}/g"