Skip to content

Commit 77a00ad

Browse files
committed
stembuild: nit cleanup comment
1 parent 8352d7f commit 77a00ad

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
@@ -340,7 +340,7 @@ func EncodePowershellCommand(command []byte) string {
340340
for _, utf16char := range utf16Command {
341341
b := make([]byte, 2)
342342
binary.LittleEndian.PutUint16(b, utf16char)
343-
byteCommand.Write(b) // This write never returns an error.
343+
byteCommand.Write(b)
344344
}
345345
return base64.StdEncoding.EncodeToString(byteCommand.Bytes())
346346
}

0 commit comments

Comments
 (0)