new_line -> newline

This commit is contained in:
Tom McLaughlin 2013-08-07 10:48:57 -04:00
parent 5b483999cc
commit 871e0b7de1
2 changed files with 6 additions and 6 deletions

View file

@ -44,7 +44,7 @@ TEST=""
FORCE=""
WARN=""
SORTARG=""
ENSURE_NEW_LINE=""
ENSURE_NEWLINE=""
PATH=/sbin:/usr/sbin:/bin:/usr/bin
@ -60,7 +60,7 @@ while getopts "o:s:d:tnw:fl" options; do
w ) WARNMSG="$OPTARG";;
f ) FORCE="true";;
t ) TEST="true";;
l ) ENSURE_NEW_LINE="true";;
l ) ENSURE_NEWLINE="true";;
* ) echo "Specify output file with -o and fragments directory with -d"
exit 1;;
esac
@ -113,7 +113,7 @@ else
printf '%s\n' "$WARNMSG" > "fragments.concat"
fi
if [ x${ENSURE_NEW_LINE} != x ]; then
if [ x${ENSURE_NEWLINE} != x ]; then
find fragments/ -type f -follow -print0 | xargs -0 -I '{}' sh -c 'if [ -n "$(tail -c 1 < {} )" ]; then echo >> {} ; fi'
fi

View file

@ -56,7 +56,7 @@ define concat(
$replace = true,
$gnu = undef,
$order='alpha',
$ensure_new_line = false
$ensure_newline = false
) {
include concat::setup
@ -109,7 +109,7 @@ define concat(
}
}
case $ensure_new_line {
case $ensure_newline {
'true', true, yes, on: {
$newlineflag = '-l'
}
@ -117,7 +117,7 @@ define concat(
$newlineflag = ''
}
default: {
fail("Improper 'ensure_new_line' value given to concat: ${ensure_new_line}")
fail("Improper 'ensure_newline' value given to concat: ${ensure_newline}")
}
}