diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-13 13:08:22 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-13 13:08:22 +0000 |
commit | 627105570f87f6983efd9850c0db892401f12d5c (patch) | |
tree | 99819da9f63d739b14ca35901d56ab133f05aa9c /main/php/php.post-upgrade | |
parent | cc45211893db12cf391553103092a584ec2577e1 (diff) | |
download | aports-627105570f87f6983efd9850c0db892401f12d5c.tar.bz2 aports-627105570f87f6983efd9850c0db892401f12d5c.tar.xz |
main/php: move 5.3.0 from testing to main
Diffstat (limited to 'main/php/php.post-upgrade')
-rw-r--r-- | main/php/php.post-upgrade | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main/php/php.post-upgrade b/main/php/php.post-upgrade new file mode 100644 index 000000000..98c959958 --- /dev/null +++ b/main/php/php.post-upgrade @@ -0,0 +1,11 @@ +#!/bin/sh + +new=$1 +old=$2 + +if [ "$(apk version -t $old 5.3)" = "<" ]; then + echo "*" + echo "* Please see migration notes here: http://php.net/migration53" + echo "*" +fi + |