summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/wixl/builder.vala3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/wixl/builder.vala b/tools/wixl/builder.vala
index c89093f..0231c60 100644
--- a/tools/wixl/builder.vala
+++ b/tools/wixl/builder.vala
@@ -691,6 +691,9 @@ namespace Wixl {
warn_if_fail (node.action == null);
node.action = action;
+ if (action.Sequence != null)
+ node.sequence = int.parse (action.Sequence);
+
if (action.After != null)
node.add_dep (table.get_action (action.After));