Skip to content

Commit

Permalink
RecipeAttributes: correctly sort alphabetically
Browse files Browse the repository at this point in the history
POST_INSTALL_SCRIPTS comes before PROVIDES.
  • Loading branch information
jmairboeck committed Dec 30, 2024
1 parent e48baad commit 1c85cc3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions HaikuPorter/RecipeAttributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,13 @@ def getRecipeFormatVersion():
'extendable': Extendable.DEFAULT,
'indexable': False,
},
'POST_INSTALL_SCRIPTS': {
'type': list,
'required': False,
'default': [],
'extendable': Extendable.DEFAULT,
'indexable': False,
},
'PRE_UNINSTALL_SCRIPTS': {
'type': list,
'required': False,
Expand All @@ -219,13 +226,6 @@ def getRecipeFormatVersion():
'extendable': Extendable.DEFAULT,
'indexable': False,
},
'POST_INSTALL_SCRIPTS': {
'type': list,
'required': False,
'default': [],
'extendable': Extendable.DEFAULT,
'indexable': False,
},
'REPLACES': {
'type': list,
'required': False,
Expand Down

0 comments on commit 1c85cc3

Please sign in to comment.