Skip to content

Commit ee7520b

Browse files
authored
Remove css from deploy scripts (#7131)
1 parent 65425a5 commit ee7520b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scripts/deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ cd $TARGET_DIR
4141
git checkout $TARGET_BRANCH
4242

4343
# Copy dist files
44-
deploy_files '../dist/*.css ../dist/*.js' './dist'
44+
deploy_files '../dist/*.js' './dist'
4545

4646
# Copy generated documentation
4747
deploy_files '../dist/docs/*' './docs'

scripts/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ git remote add auth-origin https://$GITHUB_AUTH_TOKEN@github.com/$TRAVIS_REPO_SL
2121
git config --global user.email "$GITHUB_AUTH_EMAIL"
2222
git config --global user.name "Chart.js"
2323
git checkout --detach --quiet
24-
git add -f dist/*.css dist/*.js bower.json
24+
git add -f dist/*.js bower.json
2525
git commit -m "Release $VERSION"
2626
git tag -a "v$VERSION" -m "Version $VERSION"
2727
git push -q auth-origin refs/tags/v$VERSION 2>/dev/null

0 commit comments

Comments
 (0)