1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-23 08:30:38 +12:00
uMatrix/tools/commit-assets.sh

14 lines
371 B
Bash
Raw Normal View History

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