Fix defaut IFS for Ubuntu 11.x

This commit is contained in:
Nathan Broadbent
2012-03-08 17:35:03 +08:00
parent b90a8b9c8b
commit aca96a5e8c
5 changed files with 13 additions and 13 deletions

View File

@@ -63,7 +63,7 @@ EOF
for dir in $GIT_REPOS; do
mkdir -p $dir; cd $dir; git init;
done
unset IFS
IFS=$' \t\n'
verboseGitCommands
@@ -74,7 +74,7 @@ oneTimeTearDown() {
rm -rf "${GIT_REPO_DIR}"
IFS=":"
for dir in $GIT_REPOS; do rm -rf $dir; done
unset IFS
IFS=$' \t\n'
}
ensureIndex() {