index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Pierre Schmitz <pierre@archlinux.de> | 2010-02-11 15:19:13 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-11 15:19:13 +0100 |
commit | 72a2b4789aba6188003deeb02d35e384e70656f8 (patch) | |
tree | 04aaff2c1b35c8feea203836a0f0a878f31ac875 /commitpkg | |
parent | 30cfcdc501caacb4b27c8ecc0d0cef3c8a1a6df8 (diff) |
-rwxr-xr-x | commitpkg | 7 |
@@ -49,6 +49,13 @@ else shift fi +# check if all local source files are under version control +(for s in ${source[@]}; do + echo $s | grep -vq '://' && \ + svn status $s | grep -q '?' && \ + abort "$s is not under version control" +done) || true + # see if any limit options were passed, we'll send them to SCP unset rsyncopts if [ "$1" = "-l" ]; then |