Code cleanup

This commit is contained in:
Pierre Pronchery 2012-08-23 13:25:24 +00:00
parent 8cd51c477a
commit e1a8c8ff50

View File

@ -31,8 +31,8 @@ SED="sed"
#debug
_debug()
{
echo $@ 1>&2
$@
echo "$@" 1>&2
"$@"
}
@ -97,6 +97,6 @@ while [ $# -gt 0 ]; do
$RM -- "$target" 2> "$DEVNULL"
exit 2
elif [ -x "$target.in" ]; then
$DEBUG $CHMOD +x "$target"
$DEBUG $CHMOD 0755 "$target"
fi
done