4
0
Forkkaa 0
forkattu lähteestä complotti/DossierServices

Merge pull request #36 from msoedov/sort_stash

Sort stash by file modified time
This commit is contained in:
Alex Miasoiedov 2018-02-24 12:32:39 -05:00 committed by GitHub
commit df65ad18c1
No known key found for this signature in database
GPG-avaimen ID: 4AEE18F83AFDEB23

Näytä tiedosto

@ -5,6 +5,7 @@ import (
"fmt"
"io/ioutil"
"os"
"sort"
"strings"
log "github.com/Sirupsen/logrus"
@ -125,6 +126,11 @@ func NewApp() *gin.Engine {
if err != nil {
log.Fatal(err)
}
sort.Slice(files, func(i, j int) bool {
return files[i].ModTime().Unix() > files[j].ModTime().Unix()
})
var stash []string
for _, file := range files {
if file.IsDir() {