We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a065e commit 05b80fcCopy full SHA for 05b80fc
1 file changed
scratch
@@ -875,16 +875,16 @@ scratch_upgrade() {
875
cd $(getportpath $inst)
876
if ! isinstalled $inst; then
877
settermtitle "[ $count/$total ] Installing $inst..."
878
- [ -f ./pre-install.sh ] && {
879
- sh ./pre-install.sh
+ [ -f ./pre-upgrade.sh ] && {
+ sh ./pre-upgrade.sh
880
}
881
pkgbuild -i $OPTS || {
882
error=1
883
count=$(( count - 1 ))
884
break
885
886
- [ -f ./post-install.sh ] && {
887
- sh ./post-install.sh
+ [ -f ./post-upgrade.sh ] && {
+ sh ./post-upgrade.sh
888
889
else
890
settermtitle "[ $count/$total ] Upgrading $inst..."
0 commit comments