diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 12:36:33 -0400 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2014-06-18 12:36:33 -0400 |
commit | df49c9b89e56b6c8d2d20cdcc9e03dc80996fcdd (patch) | |
tree | 26a710fd24b38a953d662707d46445662ba0a29b /cron-jobs/check_archlinux | |
parent | 63381988ae8a0f4e0c8eaede88b43a5f685ec80f (diff) |
use tab indent
Diffstat (limited to 'cron-jobs/check_archlinux')
-rwxr-xr-x | cron-jobs/check_archlinux/parse_pkgbuilds.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cron-jobs/check_archlinux/parse_pkgbuilds.sh b/cron-jobs/check_archlinux/parse_pkgbuilds.sh index c8d8618..9b26f1e 100755 --- a/cron-jobs/check_archlinux/parse_pkgbuilds.sh +++ b/cron-jobs/check_archlinux/parse_pkgbuilds.sh @@ -118,11 +118,11 @@ source_pkgbuild() { } find_pkgbuilds() { - #Skip over some dirs - local d="${1##*/}" - if [ "$d" = "CVS" -o "$d" = ".svn" ]; then - return - fi + #Skip over some dirs + local d="${1##*/}" + if [ "$d" = "CVS" -o "$d" = ".svn" ]; then + return + fi if [ -f $1/PKGBUILD ]; then source_pkgbuild $1 |