mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Fix typo in r256646: We want to generate lists of directories in INDEX-OLD
and INDEX-NEW and compare them, not generate the same list of directories from INDEX-OLD twice... Pointy hats to: cperciva & everybody who didn't proofread EN-13:04 enough
This commit is contained in:
parent
ee765c2d34
commit
ebc1d19c3c
1 changed files with 2 additions and 2 deletions
|
|
@ -2884,8 +2884,8 @@ again to finish installing updates.
|
|||
install_delete INDEX-OLD INDEX-NEW || return 1
|
||||
|
||||
# Remove old directories
|
||||
grep -vE '^/boot/' $1/INDEX-OLD |
|
||||
grep -E '^[^|]+\|d\|' > INDEX-OLD
|
||||
grep -vE '^/boot/' $1/INDEX-NEW |
|
||||
grep -E '^[^|]+\|d\|' > INDEX-NEW
|
||||
grep -vE '^/boot/' $1/INDEX-OLD |
|
||||
grep -E '^[^|]+\|d\|' > INDEX-OLD
|
||||
install_delete INDEX-OLD INDEX-NEW || return 1
|
||||
|
|
|
|||
Loading…
Reference in a new issue