blob: 69ad9b50b714b3325327994a4d4e9cfb5fd8b510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
set -e
case "$1" in
configure)
if [ -z "$2" ]; then
echo "FAIL: upgrading and no previous version passed to configure" 2>&1
exit 1
else
echo "PASS: upgrading from version '$2'"
fi
;;
esac
exit 0
|