add prefix to variable name

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-08-10 16:18:20 +02:00
commit 8fe9e86254
2 changed files with 3 additions and 2 deletions

View file

@ -26,7 +26,7 @@ __cdist_object_all()
{
[ $# -eq 1 ] || __cdist_usage "<command>"
__cdist_command="$1"; shift
__cdist_object_all_command="$1"; shift
__cdist_objects="$__cdist_tmp_dir/objects"
@ -50,7 +50,7 @@ __cdist_object_all()
while [ $# -gt 0 ]; do
__cdist_object="$1"; shift
$__cdist_command "$__cdist_object"
$__cdist_object_all_command "$__cdist_object"
done
done
}