this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

internal/cuetxtar: fix ordering bug

Fix bug that slipped in with the review process
that caused sorting to be inverted.

Signed-off-by: Marcel van Lohuizen <mpvl@gmail.com>
Change-Id: I67e909363257e513ff0f2fe62c8f9dd295751b16
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/1199803
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Unity-Result: CUE porcuepine <cue.porcuepine@gmail.com>
Reviewed-by: Matthew Sackman <matthew@cue.works>

+1 -1
+1 -1
internal/cuetxtar/txtar.go
··· 624 624 if !ok { 625 625 q = len(a.Files) 626 626 } 627 - return q - p 627 + return p - q 628 628 }) 629 629 630 630 err = os.WriteFile(fullpath, txtar.Format(a), 0644)