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

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

echo "*** HTTP Switchboard: git done."