Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorspf13 <steve.francia@gmail.com>2014-11-20 00:24:30 +0300
committerspf13 <steve.francia@gmail.com>2014-11-20 00:24:30 +0300
commit92a3372a3fdc0365a06a75e6d97f24e624db879b (patch)
tree83ee85a1bc06a172ca823f8136e70855be412c36 /commands/convert.go
parent728d0fa32cb666264045783518cc6ded5c78f246 (diff)
Added a new command `hugo list drafts` and `hugo list future`
Diffstat (limited to 'commands/convert.go')
-rw-r--r--commands/convert.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/commands/convert.go b/commands/convert.go
index 01feecb2d..ec6e2e551 100644
--- a/commands/convert.go
+++ b/commands/convert.go
@@ -15,6 +15,9 @@ package commands
import (
"fmt"
+ "path/filepath"
+ "time"
+
"github.com/spf13/cast"
"github.com/spf13/cobra"
"github.com/spf13/hugo/helpers"
@@ -22,8 +25,6 @@ import (
"github.com/spf13/hugo/parser"
jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/viper"
- "path/filepath"
- "time"
)
var OutputDir string