Pass $RUN to chroot so that all the params are expanded properly

This commit is contained in:
Jason Chu 2007-11-04 14:55:02 -08:00
parent b528eba028
commit 3ce2983ad6
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ if [ "$RUN" != "" ]; then
chroot_mount
echo "starting chroot ($RUN)"
chroot "${working_dir}" "${RUN}"
chroot "${working_dir}" ${RUN}
# }}}
else