Skip to content

Commit

Permalink
Avoid calling rm without -f in initial work on a custom mounts system…
Browse files Browse the repository at this point in the history
… to ensure non-interactivity.
  • Loading branch information
daniel-baumann committed Apr 1, 2012
1 parent cc3b66c commit 8b450c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/live
Expand Up @@ -1725,7 +1725,7 @@ setup_unionfs ()
mount -t "${UNIONTYPE}" -o "${unionmountopts}" "${UNIONTYPE}" "${dest}"
fi
done < ${bindings}
rm ${bindings}
rm -f ${bindings}

# Look for other snapshots to copy in
try_snap "${root_snapdata}" "${rootmnt}" "ROOT"
Expand Down

0 comments on commit 8b450c0

Please sign in to comment.