Replaced all occurences of 'local IFS=' with 'IFS= ... unset IFS'. Fixes #12

This commit is contained in:
Nathan Broadbent
2011-12-14 13:27:39 +08:00
parent 2cd411aa4f
commit 993c9ee9fc
4 changed files with 27 additions and 19 deletions

View File

@@ -59,7 +59,7 @@ EOF
done
# Setup some custom repos outside the main repo dir
local IFS=":"
IFS=":"
for dir in $GIT_REPOS; do
mkdir -p $dir; cd $dir; git init;
done
@@ -72,8 +72,9 @@ EOF
oneTimeTearDown() {
rm -rf "${GIT_REPO_DIR}"
local IFS=":"
IFS=":"
for dir in $GIT_REPOS; do rm -rf $dir; done
unset IFS
}
ensureIndex() {