diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 19:47:16 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-02-13 19:47:16 +0100 |
commit | 362a99b99559a2885b8b3d015b1ba4b2ea96429e (patch) | |
tree | 8385a06b282d1b1566a5258bca9ca6978be669f1 /archrelease | |
parent | 7a8130fec8121b777b1ee878c6f5947ef25a0d11 (diff) | |
download | devtools32-362a99b99559a2885b8b3d015b1ba4b2ea96429e.tar.xz |
apply common coding style
Diffstat (limited to 'archrelease')
-rwxr-xr-x | archrelease | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/archrelease b/archrelease index e92a76f..f1fbb26 100755 --- a/archrelease +++ b/archrelease @@ -1,33 +1,36 @@ #!/bin/bash -if [ "$1" = "" ]; then - echo "Usage: archrelease <repo>" - exit 1 +if [ "$1" = '' ]; then + echo 'Usage: archrelease <repo>' + exit 1 fi if [ ! -f PKGBUILD ]; then - echo "archrelease: PKGBUILD not found" - exit 1 + echo 'archrelease: PKGBUILD not found' + exit 1 fi -if [ "$(basename $(readlink -f .))" != "trunk" ]; then - echo "archrelease: Not in a package trunk dir" - exit 1 +if [ "$(basename $(readlink -f .))" != 'trunk' ]; then + echo 'archrelease: Not in a package trunk dir' + exit 1 fi -if [ "$(svn diff)" != "" ]; then - echo "archrelease: You have not committed your changes yet!" - echo " Please run 'upgpkg' or 'svn commit' first" - exit 1 +if [ "$(svn diff)" != '' ]; then + echo 'archrelease: You have not committed your changes yet!' + echo ' Please run "svn commit" first' + exit 1 fi echo -n 'releasing package...' pushd .. >/dev/null if [ -d repos/$1 ]; then - svn rm --force -q repos/$1 - svn commit -q -m "archrelease: remove $1" + svn rm --force -q repos/$1 + svn commit -q -m "archrelease: remove $1" fi svn copy -q -r HEAD trunk repos/$1 svn commit -q -m "archrelease: copy trunk to $1" popd >/dev/null echo 'done' + +# vim: set noexpandtab tabstop=8 shiftwidth=8 wrap:textwidth=132 autoindent +# kate: indent-mode normal; indent-width 8; tab-indents on; tab-width 8; word-wrap on; word-wrap-column 132 |