diff options
Diffstat (limited to 'abs/core-testing/pacman/pacman.install')
-rw-r--r-- | abs/core-testing/pacman/pacman.install | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/abs/core-testing/pacman/pacman.install b/abs/core-testing/pacman/pacman.install index 46e4763..ed10f0d 100644 --- a/abs/core-testing/pacman/pacman.install +++ b/abs/core-testing/pacman/pacman.install @@ -1,10 +1,15 @@ +#!/bin/sh # arg 1: the new package version # arg 2: the old package version post_upgrade() { # one time stuff for md5sum issue with older pacman versions - if [ "$(vercmp $2 3.0.2)" -lt 0 ]; then - _resetbackups - fi + if [ -f /usr/bin/vercmp ] + then + if [ "$(vercmp $2 3.0.2)" -lt 0 ] + then + _resetbackups + fi + fi } _resetbackups() { @@ -50,7 +55,3 @@ _resetbackups() { fi done } - -op=$1 -shift -$op $* |