File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -71,9 +71,6 @@ namespace Wixl {
71
71
return elems;
72
72
}
73
73
74
- public void add_custom_actions<G> (MsiTableSequence table) {
75
- }
76
-
77
74
delegate void AddSequence (string action , int sequence ) throws GLib .Error ;
78
75
79
76
private void sequence_actions () throws GLib .Error {
@@ -205,8 +202,10 @@ namespace Wixl {
205
202
string [] secureProperties;
206
203
207
204
public void property_update () throws GLib .Error {
208
- var prop = string . joinv (" ;" , secureProperties);
209
- db. table_property. add (" SecureCustomProperties" , prop);
205
+ if (secureProperties. length != 0 ) {
206
+ var prop = string . joinv (" ;" , secureProperties);
207
+ db. table_property. add (" SecureCustomProperties" , prop);
208
+ }
210
209
}
211
210
212
211
public MsiDatabase build () throws GLib .Error {
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ namespace Wixl {
120
120
}
121
121
}
122
122
123
- public void add_sorted_actions () {
123
+ public void add_sorted_actions () throws GLib . Error {
124
124
add_implicit_deps ();
125
125
var sorted = sort_topological ();
126
126
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ namespace Wixl {
78
78
return 0 ;
79
79
80
80
if (verbose)
81
- print (" Building %s...\n " , files[ 0 ] );
81
+ print (" Building %s...\n " , output );
82
82
var msi = builder. build ();
83
83
msi. build (output);
84
84
} catch (GLib . Error error) {
You can’t perform that action at this time.
0 commit comments