aboutsummaryrefslogtreecommitdiff
path: root/commit-updates
blob: 571cadd980c31d1866e67bf7a23c72a40fe4294c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
#
# Commit both on git and svn
#

# Parameters
ARGS="$*"

# Simply update commit
if [ ! -z "$1" ]; then
  commit "Updates $*"
else
  commit "Updates $(basename `pwd`)"
fi