1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-02 02:14:52 +12:00
uMatrix/tools/commit-assets.sh
mikhaelkh f24e9a907f Minor fixes
µMatrix -> uMatrix in tools folder.
Small fix in hosts-files.json.
2015-05-29 23:49:41 +03:00

14 lines
367 B
Bash
Executable file

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