Skip to content

Commit

Permalink
Fixing typing error.
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-baumann committed Oct 4, 2007
1 parent 0d07671 commit 6b8f319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/live
Expand Up @@ -853,13 +853,13 @@ setup_unionfs ()
then
for IMAGE in $(cat ${image_directory}/filesystem.${MODULE}.module)
do
image_string="${image_string} ${image_directory}/${image}"
image_string="${image_string} ${image_directory}/${IMAGE}"
done
elif [ -e "${image_directory}/${MODULE}.module" ]
then
for IMAGE in $(cat ${image_directory}/${MODULE}.module)
do
image_string="${image_string} ${image_directory}/${image}"
image_string="${image_string} ${image_directory}/${IMAGE}"
done
else
# ${MODULE}.module does not exist, create a list of images
Expand Down

0 comments on commit 6b8f319

Please sign in to comment.