mirror of
https://0xacab.org/liberate/backupninja.git
synced 2024-11-08 20:02:32 +01:00
Make logic consistent with what we're using elsewhere.
Without this change, e.g. 0.5.20 would not get --extra-clean, while it should. Granted, the new test is buggy too, e.g. 0.7.1 will get --extra-clean, while it should not. Will report that to Redmine.
This commit is contained in:
parent
e27654df5c
commit
1a762885e2
@ -191,7 +191,7 @@ else
|
||||
fi
|
||||
|
||||
### Cleanup options
|
||||
if [ "$duplicity_major" -le 0 -a "$duplicity_minor" -le 6 -a "$duplicity_sub" -le 19 ]; then
|
||||
if ! [ "$duplicity_major" -ge 0 -a "$duplicity_minor" -ge 6 -a "$duplicity_sub" -ge 20 ]; then
|
||||
execstr_options="${execstr_options} --extra-clean"
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user