We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c91e309 commit d2a1aefCopy full SHA for d2a1aef
1 file changed
alteriso5/cmd/build/work/boot/xorriso.go
@@ -19,6 +19,10 @@ type xorrisoArg struct {
19
}
20
21
func (xa *xorrisoArg) add(args ...string) {
22
+ if xa.args == nil {
23
+ xa.args = &[]string{}
24
+ }
25
+
26
arg := append(*(xa.args), args...)
27
xa.args = &arg
28
0 commit comments