Skip to content
Snippets Groups Projects
Commit 7d9eb8c6 authored by Richard Hartmann's avatar Richard Hartmann
Browse files

Merge branch 'feature/IFS'

parents 3890283b 505846e8
No related branches found
No related tags found
No related merge requests found
......@@ -364,6 +364,8 @@ write_gitignore() {
use
cd "$VCSH_BASE" || fatal "could not enter '$VCSH_BASE'" 11
OLDIFS="$IFS"
IFS=$(printf '\n\t')
gitignores=$(for file in $(git ls-files); do
while true; do
echo $file; new="${file%/*}"
......@@ -384,6 +386,7 @@ write_gitignore() {
{ echo "$gitignore/*" | sed 's@^@!/@' >> "$tempfile" || fatal "could not write to '$tempfile'" 57; }
fi
done
IFS="$OLDIFS"
if diff -N "$tempfile" "$VCSH_BASE/.gitignore.d/$VCSH_REPO_NAME" > /dev/null; then
rm -f "$tempfile" || error "could not delete '$tempfile'"
exit
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment