aboutsummaryrefslogtreecommitdiffstats
path: root/assets/update-git.sh
blob: 282ae90b63b5bc1ae5f5b5bf44c623f414f8934c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
#
# This script assumes a linux environment

echo "*** uBlock: git adding changed assets..."
git add --update --ignore-removal --ignore-errors ./*
echo "*** uBlock: git committing assets..."
git commit -m 'update of third-party assets'
echo "*** uBlock: git pushing assets to remote master..."
git push origin master

echo "*** uBlock: git done."