1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-29 03:21:09 +12:00
uMatrix/tools/commit-assets.sh

14 lines
367 B
Bash
Raw Normal View History

2014-10-24 03:33:50 +13:00
#!/bin/bash
#
# This script assumes a linux environment
echo "*** uMatrix: git adding changed assets..."
2014-10-24 03:33:50 +13:00
git add --update --ignore-removal --ignore-errors assets
echo "*** uMatrix: git committing assets..."
2014-10-24 03:33:50 +13:00
git commit -m 'update of third-party assets'
echo "*** uMatrix: git pushing assets to remote master..."
2014-10-24 03:33:50 +13:00
git push origin master
echo "*** uMatrix: git done."
2014-10-24 03:33:50 +13:00