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 key ID: 4AEE18F83AFDEB23

View file

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