diff options
| author | Daniel Baumann <daniel@debian.org> | 2012-04-01 21:57:19 +0200 |
|---|---|---|
| committer | Daniel Baumann <daniel@debian.org> | 2012-04-01 21:59:35 +0200 |
| commit | 8b450c0e900c199259b738b3e43b01195b853ec3 (patch) | |
| tree | 3c8df6cb8b3de0c2eb7a8d7d58eb163f8d457f36 /scripts | |
| parent | cc3b66c32fdaa26bef38d338f2d260c7f5cb6f64 (diff) | |
| download | live-boot-8b450c0e900c199259b738b3e43b01195b853ec3.tar.gz live-boot-8b450c0e900c199259b738b3e43b01195b853ec3.zip | |
Avoid calling rm without -f in initial work on a custom mounts system to ensure non-interactivity.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/live | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/live b/scripts/live index 4c0597a..bd4ee2a 100755 --- a/scripts/live +++ b/scripts/live @@ -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" |
