Skip to content

Commit

Permalink
Update import path
Browse files Browse the repository at this point in the history
From github.com/codegangsta/cli to github.com/urfave/cli

Signed-off-by: Unknwon <[email protected]>
  • Loading branch information
unknwon committed Dec 5, 2016
1 parent f0a7a27 commit ce08b06
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM alpine:3.3
MAINTAINER [email protected]

# Install system utils & runtime dependencies
ADD https://github.com/tianon/gosu/releases/download/1.7/gosu-amd64 /usr/sbin/gosu
ADD https://github.com/tianon/gosu/releases/download/1.10/gosu-amd64 /usr/sbin/gosu
RUN chmod +x /usr/sbin/gosu \
&& apk --no-cache --no-progress add ca-certificates bash git s6 curl socat

Expand Down
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ package cmd
import (
"time"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
)

func stringFlag(name, value, usage string) cli.StringFlag {
Expand Down
2 changes: 1 addition & 1 deletion cmd/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"strings"

"github.com/Unknwon/com"
"github.com/codegangsta/cli"
"github.com/urfave/cli"
"gopkg.in/ini.v1"

"github.com/peachdocs/peach/modules/bindata"
Expand Down
2 changes: 1 addition & 1 deletion cmd/web.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ import (
"net/http"

"github.com/Unknwon/log"
"github.com/codegangsta/cli"
"github.com/go-macaron/i18n"
"github.com/go-macaron/pongo2"
"github.com/urfave/cli"
"gopkg.in/macaron.v1"

"github.com/peachdocs/peach/models"
Expand Down
4 changes: 2 additions & 2 deletions peach.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ import (
"os"
"runtime"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/peachdocs/peach/cmd"
"github.com/peachdocs/peach/modules/setting"
)

const APP_VER = "0.9.2.1214"
const APP_VER = "0.9.2.1205"

func init() {
runtime.GOMAXPROCS(runtime.NumCPU())
Expand Down

0 comments on commit ce08b06

Please sign in to comment.