Skip to content

Commit 3fdf1d9

Browse files
committed
stembuild: nit cleanup comment
1 parent 0c91620 commit 3fdf1d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stembuild/construct/vmconstruct.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ func EncodePowershellCommand(command []byte) string {
313313
for _, utf16char := range utf16Command {
314314
b := make([]byte, 2)
315315
binary.LittleEndian.PutUint16(b, utf16char)
316-
byteCommand.Write(b) // This write never returns an error.
316+
byteCommand.Write(b)
317317
}
318318
return base64.StdEncoding.EncodeToString(byteCommand.Bytes())
319319
}

0 commit comments

Comments
 (0)