From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Thu, 20 Feb 2020 14:42:06 +0000 (-0800) Subject: Remove css from deploy scripts (#7131) X-Git-Tag: v3.0.0-alpha~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee7520b7105618072a6f0870bcc32abcccf1b7cd;p=thirdparty%2FChart.js.git Remove css from deploy scripts (#7131) --- diff --git a/scripts/deploy.sh b/scripts/deploy.sh index d7717b23c..f3212b4fc 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -41,7 +41,7 @@ cd $TARGET_DIR git checkout $TARGET_BRANCH # Copy dist files -deploy_files '../dist/*.css ../dist/*.js' './dist' +deploy_files '../dist/*.js' './dist' # Copy generated documentation deploy_files '../dist/docs/*' './docs' diff --git a/scripts/release.sh b/scripts/release.sh index 13686b4d7..4dcc2c6b5 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -21,7 +21,7 @@ git remote add auth-origin https://$GITHUB_AUTH_TOKEN@github.com/$TRAVIS_REPO_SL git config --global user.email "$GITHUB_AUTH_EMAIL" git config --global user.name "Chart.js" git checkout --detach --quiet -git add -f dist/*.css dist/*.js bower.json +git add -f dist/*.js bower.json git commit -m "Release $VERSION" git tag -a "v$VERSION" -m "Version $VERSION" git push -q auth-origin refs/tags/v$VERSION 2>/dev/null