summaryrefslogtreecommitdiffstats
path: root/scripts/abs
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-12-21 02:53:40 +0100
committerAaron Griffin <aaron@archlinux.org>2006-12-21 02:53:40 +0100
commit74e347f09bd62872de84b431dcf029090931d199 (patch)
tree966f7b6b2a35ccaecb61b2119f28a2bad2340a96 /scripts/abs
parentb1fbcd3ab5cf16b668cfc72d90223f48a329605b (diff)
downloadpacman-74e347f09bd62872de84b431dcf029090931d199.tar.gz
pacman-74e347f09bd62872de84b431dcf029090931d199.tar.xz
* modeline fixes / reformatting
* formatting / indentation fixes * makepkg: Dan McGee <dpmcgee@gmail.com> - integrity check fix Jürgen Hötzel <juergen@hoetzel.info> - EUID usage and "x$foo" check revamp
Diffstat (limited to 'scripts/abs')
-rw-r--r--scripts/abs33
1 files changed, 16 insertions, 17 deletions
diff --git a/scripts/abs b/scripts/abs
index 36fe4c04..3d8dd728 100644
--- a/scripts/abs
+++ b/scripts/abs
@@ -1,5 +1,4 @@
#!/bin/bash
-# vim: set ft=sh ts=2 sw=2
[ -f /etc/abs/abs.conf ] && source /etc/abs/abs.conf
@@ -15,21 +14,21 @@ usage() {
}
update() {
- cd $ABSROOT
- for sup in "${SUPFILES[@]}"; do
- if [ "$sup" != "testing" ]; then
- if [ "$sup" = "${sup#!}" ]; then
- cvsup -L 1 -r 0 -g -b $ABSROOT -c .sup /etc/abs/supfile.$sup
- fi
- elif [ "$sup" = "testing" ]; then
- if [ ! -d /var/abs/testing ]; then
- mkdir /var/abs/testing;
- fi
- cd $ABSROOT/testing
- cvsup -L 1 -r 0 -g -b $ABSROOT/testing -c .sup /etc/abs/supfile.testing
- cd $ABSROOT
- fi
- done
+ cd $ABSROOT
+ for sup in "${SUPFILES[@]}"; do
+ if [ "$sup" != "testing" ]; then
+ if [ "$sup" = "${sup#!}" ]; then
+ cvsup -L 1 -r 0 -g -b $ABSROOT -c .sup /etc/abs/supfile.$sup
+ fi
+ elif [ "$sup" = "testing" ]; then
+ if [ ! -d /var/abs/testing ]; then
+ mkdir /var/abs/testing;
+ fi
+ cd $ABSROOT/testing
+ cvsup -L 1 -r 0 -g -b $ABSROOT/testing -c .sup /etc/abs/supfile.testing
+ cd $ABSROOT
+ fi
+ done
}
@@ -93,4 +92,4 @@ fi
update
exit 0
-# vim: set ts=2 noet:
+# vim: set ts=2 sw=2 noet: