#!/bin/sh

post_upgrade() {
  if [ -x usr/bin/pacman-key ]; then
    if usr/bin/pacman-key -l >/dev/null 2>&1; then
      usr/bin/pacman-key --populate ericwoud
    fi
  fi
}

post_install() {
    post_upgrade
}
